File: D:/HostingSpaces/SBogers84/zuiderbos.nl/app/storage/views/2a149df943c3072932c94ed196e2f314
<?php /* New at Zuiderbos */ ?>
<section class="new-zuiderbos footer-link-block">
<a href="/<?php echo $links->{$page->root->code_name.'-parents-steps'}->route; ?>" class="placeholder">
<figure></figure>
<div class="text">
<h4><?php echo \KommaLang::get('newZuiderbos'); ?></h4>
<p><?php echo \KommaLang::get('followSteps'); ?></p>
</div>
<span></span>
</a>
</section>
<?php /* Latest news */ ?>
<section class="latest-news footer-link-block">
<a href="/<?php echo $links->{$page->root->code_name.'-actual'}->route; ?>" class="placeholder">
<figure></figure>
<div class="text">
<h4><?php echo $links->{$page->root->code_name.'-actual'}->name; ?></h4>
<p><?php echo \KommaLang::get('alwaysUpToDate'); ?></p>
</div>
<span></span>
</a>
</section>
<?php /* faq */ ?>
<section class="faq footer-link-block">
<a href="/<?php echo $links->{$page->root->code_name.'-faq'}->route; ?>" class="placeholder">
<figure></figure>
<div class="text">
<h4><?php echo \KommaLang::get('searchFaq'); ?></h4>
</div>
<span></span>
</a>
</section>
<?php /* Download */ ?>
<?php
// We should have made a multi site out of this project...
if(!isset($page->schoolGuide)) {
$page->schoolGuide = $page->school->documents()->whereIn('documents.id', [5,6,7])->get()->first();
}
?>
<?php if($page->schoolGuide != null): ?>
<section class="guide footer-link-block">
<a href="<?php echo $page->schoolGuide->file->path; ?>" target="_blank" class="placeholder">
<figure></figure>
<div class="text">
<h4><?php echo KommaLang::get('schoolGuide'); ?></h4>
</div>
<span></span>
</a>
</section>
<?php endif; ?>