File: D:/HostingSpaces/SBogers42/tandartsmaas.nl/app/storage/views/8d82bb6a158baf879d679291928c476c
<?php $__env->startSection('image'); ?>
<img src="/images/temp/temp_pand.jpg" alt="temp" class="fill" data-origin="center center"/>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('text'); ?>
<h1>Sitemap</h1>
<?php foreach($navigation->main() as $pageEntity): ?>
<?php if( ! $pageEntity->hasSubmenu()): ?>
<li <?php if($pageEntity->isActive($currentPageEntity)): ?> class="active" <?php endif; ?> >
<a href="<?php echo $pageEntity->route; ?>" data-state="<?php echo $pageEntity->name; ?>">
<?php echo $pageEntity->label; ?>
</a>
</li>
<?php elseif( $pageEntity->name == 'services'): ?>
<li>
<a href="<?php echo $pageEntity->route; ?>" data-state="<?php echo $pageEntity->name; ?>">
<?php echo $pageEntity->label; ?>
</a>
<ul>
<?php foreach($navigation->services() as $subEntity): ?>
<?php if($subEntity->name != $pageEntity->name): ?>
<li <?php if($subEntity->route == $currentPageEntity->route): ?> class="active" <?php endif; ?> >
<a href="<?php echo $subEntity->route; ?>" data-state="<?php echo $subEntity->name; ?>">
<?php echo $subEntity->label; ?>
</a>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
</li>
<?php elseif( $pageEntity->name == 'practice'): ?>
<li>
<a href="<?php echo $pageEntity->route; ?>" data-state="<?php echo $pageEntity->name; ?>">
<?php echo $pageEntity->label; ?>
</a>
<ul>
<?php foreach($navigation->practice() as $subEntity): ?>
<?php if($subEntity->name != $pageEntity->name): ?>
<li <?php if($subEntity->route == $currentPageEntity->route): ?> class="active" <?php endif; ?> >
<a href="<?php echo $subEntity->route; ?>" data-state="<?php echo $subEntity->name; ?>">
<?php echo $subEntity->label; ?>
</a>
</li>
<?php endif; ?>
<?php endforeach; ?>
</ul>
</li>
<?php endif; ?>
<?php endforeach; ?>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.pages.default', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>