File: D:/HostingSpaces/SBogers10/zuiderbos.komma.pro/app/storage/views/244dca071b998f15b49b027279a513d3
<?php $__env->startSection('meta'); ?>
<title><?php echo $error; ?></title>
<meta name="description" content="<?php echo $errorMessage; ?>">
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="image-wrapper">
<header>
<div class="grid-row">
<?php /* Logo */ ?>
<figure class="grid-col col-2 offset-1 logo">
<a href="/">
<span></span>
<p>
</p>
</a>
<?php /* Link to landings page */ ?>
<a class="root-link" href="/">
<?php echo KommaLang::get('backToRoot'); ?>
</a>
</figure>
<?php /* Navigatie */ ?>
<nav class="grid-col col-8">
<?php /* Office 365 login */ ?>
<div class="office">
<a href="<?php echo \Config::get('business.officeLink'); ?>" target="_blank"><?php echo KommaLang::get('officeLink'); ?></a>
</div>
</nav>
</div>
</header>
<div class="content-placeholder">
<?php /* Make extra block for the creative backgrounds in this design :p */ ?>
<div class="background"></div>
<div class="grey-block"></div>
<div class="grid-row">
<span class="right-icon styling"></span>
<?php /* Impression block */ ?>
<div class="page-impression grid-col">
<?php /* Quote */ ?>
<div class="quote">
<p>‘<?php echo KommaLang::get('errorQuote'); ?>’</p>
</div>
<?php /* Image */ ?>
<img alt="error pagina image"
src="/img/zuiderbos-header.jpg"/>
<span class="left-icon styling"></span>
</div>
<?php /* Main content block */ ?>
<div class="grid-col main">
<?php /* Loaded content */ ?>
<div class="content">
<h1><?php echo $errorHeader; ?></h1>
<h2><?php echo $errorStreamer; ?></h2>
<p><?php echo $errorMessage; ?></p>
<div class="buttons">
<a href="/" class="button home">
Home
</a>
<a href="/sitemap" class="button sitemap">
Sitemap
</a>
</div>
</div>
</div>
</div>
</div>
</div>
<?php echo $__env->make('layouts.partials.landingspage.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-js'); ?>
<script>
$(function () {
resizeMyPage();
$(window).resize(
$.throttle(100, resizeMyPage)
);
});
function resizeMyPage() {
// Main content must be at least 200px higher then the impression block
$('.content-placeholder .main').css('min-height', $('.error-page .page-impression').height() + 200);
// Resizing for the grey block on (default)pages
var greyHeight = $('.content-placeholder .main').height() - $('.error-page .page-impression').height() + 200;
var greyWidth = ($('.content-placeholder').width() - $('.error-page .content-placeholder>.grid-row').width()) / 2 + $('.error-page .page-impression').width();
$('.grey-block').height(greyHeight).width(greyWidth);
}
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.base', ['view' => 'error-page'], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>