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/SBogers101/cranendonckactief.nl/app/views/layouts/pages/about.blade.php
@extends('layouts.pages.page')

@section('additional-page-content')

    {{--Hier komt medewerkers--}}

    <section class="about-extra">

        <div class="grid-row">

            <div class="grid-col col-4 offset-1 content">
                <img alt="anbi logo" src="/img/anbi.svg" width="160px" style="margin-bottom: 25px;" />
                    {{ $page->content->about_extra->description }}
            </div>

            <div class="grid-col col-5 offset-1 document-list">
                <h4>@lang('translations.yearDocuments')</h4>
                <ul>
                    @foreach($page->documents as $document)
                        <li>
                            <a target="_blank" href="{{$document->file->path}}">
                                <span class="icon">@include('svg.pdf')</span>
                                <h3>{{$document->name}}</h3>
                            </a>
                        </li>
                    @endforeach
                </ul>

            </div>

        </div>

    </section>

@endsection