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/SBogers110/franciscaansebeweging.nl/app/views/layouts/pages/sitemap.blade.php
@extends('layouts.master')

@section('editable_content')

    <div class="after-menu">

        <header id="top">
        <span class="overlay animation-part">
        </span>

            <div class="grid-row">
                <section class="content grid-col col-6">
                    <span class="content-overlay animation-part"></span>

                    <div class="logo-wrapper">

                        <a class="logo" href="/">
                            <img class="icon" alt="logo" src="/img/logo-beeldmerk.svg">
                            <img class="full-logo" alt="logo" src="/img/logo.svg">
                        </a>

                        <div class="logo-text">
                            <img alt="logo text" src="/img/logo-text.svg"/>
                        </div>

                        <div class="breadcrumb-placeholder">
                            @include('layouts.partials.breadcrumb')
                        </div>

                    </div>

                    <h1>{{$page->translation->name}}</h1>

                    @foreach($pages->findChildren() as $child)
                        @unless($child->code_name == 'home')
                            <ul class="sitemap-list">
                                @include('layouts.partials.sitemapLoop', ['sitemapItem' => $child])
                            </ul>
                        @endunless
                    @endforeach

                </section>

            </div>

            <figure class="header-image">
                <span style="display: block; background-image: url('/img/global_background.jpg')"></span>
            </figure>

        </header>

        @include('layouts.partials.becomeMemberOrFriend')

    </div>

@endsection