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/SBogers84/zuiderbos.nl/app/storage/views/3263cf9a4e07a870074045c3d5373e20
<section class="brochures-overview">
    <div class="grid-row">
        <div class="overview-placeholder grid-col col-12">
            <?php /* Make header and pagination if needed */ ?>
            <div class="overview-header grid-row full-row">
                <h4 class="grid-col col-7"><?php echo KommaLang::get('brochureOverviewTitle'); ?></h4>
            </div>

            <?php if(!empty($page->brochures) && count($page->brochures) > 0): ?>
<?php /*                <div class="grid-row full-row articles">*/ ?>
<?php /*                    */ ?><?php /* Loop through reference for this pagination page*/ ?>
<?php /*                    <?php foreach($page->brochures as $key => $brochure): ?>*/ ?>
<?php /*                        <?php if(!empty($brochure->files->first()->path)): ?>*/ ?>
<?php /*                            <article class="job">*/ ?>
<?php /*                                <a href="<?php echo $brochure->files->first()->path; ?>">*/ ?>
<?php /*                                    <div class="content">*/ ?>
<?php /*                                        <h2><?php echo $brochure->name; ?></h2>*/ ?>
<?php /*                                    </div>*/ ?>
<?php /*                                </a>*/ ?>
<?php /*                            </article>*/ ?>
<?php /*                        <?php endif; ?>*/ ?>
<?php /*                    <?php endforeach; ?>*/ ?>
<?php /*                </div>*/ ?>

                <ul class="grid-row full-row simple-list">
                    <?php /* Loop through reference for this pagination page*/ ?>
                    <?php foreach($page->brochures as $key => $brochure): ?>
                        <?php if(!empty($brochure->files->first()->path)): ?>
                            <li class="simple-list__item">
                                <a class="simple-list__link" href="<?php echo $brochure->files->first()->path; ?>">
                                    <?php echo $brochure->name; ?>

                                </a>
                            </li>
                        <?php endif; ?>
                    <?php endforeach; ?>
                </ul>

            <?php else: ?>
                <p>
                    Op dit moment zijn er geen brochures beschikbaar.
                </p>
            <?php endif; ?>
        </div>
    </div>
</section>