File: D:/HostingSpaces/SBogers10/zuiderbos.komma.pro/app/storage/views/dcbf745d5723526d99224ee12f5a3940
<?php $__env->startSection('editable_content'); ?>
<?php /* Header Image */ ?>
<div class="image-wrapper">
<div class="grid-row">
<a class="grid-col grid-col__link grid-col__link--vacancy" href="/<?php echo $links->jobs->route; ?>">Vacatures
<span class="vacancy-amount__circle"><?php echo $jobCounter; ?></span>
</a>
<a class="grid-col grid-col__link grid-col__link--office" href="<?php echo \Config::get('business.officeLink'); ?>"
target="_blank"><?php echo KommaLang::get('officeLink'); ?></a>
</div>
<?php if(isset($announcement)): ?>
<div class="announcement">
<a class="announcement__link" href="<?php echo $announcement->link; ?>">
<span class="announcement__icon"><?php echo $__env->make('layouts.partials.landingspage.info_icon_svg', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?></span>
<span class="announcement__text"><?php echo $announcement->message; ?></span>
</a>
</div>
<?php endif; ?>
</div>
<?php /* School selection block */ ?>
<?php echo $__env->make('layouts.partials.landingspage.schoolSelection', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php echo $__env->make('layouts.partials.dynamic.dynamicBlocks', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-js'); ?>
<script>
$(function () {
$('.faq-home .content ul li').click(function () {
var faqItem = $(this).data('faq');
if (!$(this).hasClass('active')){
$('.faq-home .content ul li').removeClass('active');
$('.faq-home .content article').removeClass('active');
$(this).addClass('active');
$('.faq-home .content article[data-faq=' + faqItem + ']').addClass('active');
}
else{
$(this).removeClass('active');
$('.faq-home .content article[data-faq=' + faqItem + ']').removeClass('active');
}
});
$(function () {
resizeMyPage();
$(window).resize(
$.throttle(100, resizeMyPage)
);
});
function resizeMyPage() {
// Calculate height so it can be a square
$('.faq-home .content .return').css('height', $('.faq-home .content .return').width());
}
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', ['view' => 'global', 'otherFooter' => 'layouts.partials.landingspage.footer'], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>