File: D:/HostingSpaces/SBogers10/debierbaron.komma.pro/app/storage/views/21d57fc3c51a0aa71e40872d0cf49426
<?php $__env->startSection('editable_content'); ?>
<h1><?php echo $data->content->name; ?></h1>
<div class="description"><?php echo $data->content->description; ?></div>
<?php foreach($data->content->items as $item): ?>
<article>
<a href="/<?php echo $item->route; ?>" >
<h2 class="title"><?php echo $item->name; ?></h2>
<span class="date"><?php echo $item->date; ?></span>
<div>
<?php if(isset($item->images[0])): ?>
<img src="<?php echo $item->images[0]['medium_image_url']; ?>"/>
<?php endif; ?>
</div>
<div class="short_description">
<?php echo $item->short_description; ?>
</div>
</a>
</article>
<?php endforeach; ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>