HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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(); ?>