File: D:/HostingSpaces/SBogers10/ijzerenman.komma.pro/app/storage/views/4e38b3f03eaabe4b97e4d50e004070fc
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('layouts.partials.breadcrumb', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<div class="content-block">
<div class="description <?php echo isset($class) ? $class : ''; ?>">
<h2><?php echo $title; ?></h2>
<div class="waves-holder">
<span class="waves"></span>
</div>
<ul class="sitemap">
<?php foreach($globals as $key => $global): ?>
<li>
<a href="<?php echo $global->route; ?>" class="title"><?php echo $global->name; ?></a>
<ul>
<?php if(count($global->children)): ?>
<?php foreach($global->children as $page): ?>
<li><a href="/<?php echo $page->route; ?>" data-color="<?php echo Str::lower($global->name); ?>"><?php echo $page->name; ?></a></li>
<?php endforeach; ?>
<?php endif; ?>
</ul>
</li>
<?php if($key == 2): ?>
</ul>
<ul class="sitemap">
<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php /* <ul>
<?php foreach($items as $item): ?>
<li>
<a href="<?php echo $item['loc']; ?>"><?php echo (empty($item['title'])) ? $item['loc'] : $item['title']; ?></a>
</li>
<?php endforeach; ?>
</ul>*/ ?>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>