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/80815fd1995a6786f62c35879e18a832
<section class="faq-home">
    <div class="header">
        <?php /* Default header */ ?>
            <span>
                <?php echo $__env->make('layouts.partials.landingspage.info_icon_svg', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
            </span>
            <h2><?php echo KommaLang::get('homeFaqHeader'); ?></h2>
    </div>


    <div class="content">

        <?php /* FAQ items list */ ?>
        <ul>
            <?php foreach($faq as $key => $item): ?>
                <li data-faq="<?php echo $key; ?>" <?php if($key == 0): ?> class="active" <?php endif; ?> >
                    <div class="faq-question">
                        <span></span>
                        <p><?php echo $item->translation->name; ?></p>
                    </div>
                    <article data-faq="<?php echo $key; ?>" class="faq-item__mobile  <?php if($key == 0): ?> active <?php endif; ?>">
                        <?php echo $item->translation->description; ?>

                    </article>
                </li>

            <?php endforeach; ?>
        </ul>

        <?php /* FAQ item content */ ?>
        <?php foreach($faq as $key => $item): ?>
            <article data-faq="<?php echo $key; ?>" class="faq-item  <?php if($key == 0): ?> active <?php endif; ?> ">
                <?php echo $item->translation->description; ?>

            </article>
        <?php endforeach; ?>

    </div>
</section>