File: D:/HostingSpaces/SBogers10/kemi.komma.pro/resources/views/site/pages/sitemap/show.blade.php
@extends('site.master', ['view' => 'single-page'])
@section('title', 'Sitemap')
@section('meta_description', '')
@section('content')
<section class="content">
<div class="grid-row">
<div class="kms-content">
<h1>Sitemap</h1>
<div class="sitemap">
{{-- Generate all sitemap loop for find children except home --}}
@foreach($page->findChildren() as $child)
@unless($child->code_name == 'home')
<ul class="sitemap-list">
@include('site.partials.sitemapLoop', ['sitemapItem' => $child])
</ul>
@endunless
@endforeach
</div>
</div>
</div>
</section>
@endsection