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/SBogers10/structura.komma.pro/resources/views/site/pages/about.blade.php
@extends('site.master', ['view' => 'default'])

@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)

@section('content')

    <section class="dynamic-content">
        <div class="grid-row">
            @include('site.partials.dynamic.dynamicBlocks', [ 'dynamicContent' => $page->translation->description ])
        </div>

        <a class="show-scroll scroll-to-target" href="#{{$targetId or 'persons'}}">
            <span class="arrow">
                @include('site.svg.arrow')
            </span>
        </a>
    </section>

    @if(is_array($page->translation->groups) && array_key_exists('person', $page->translation->groups))
        <section class="persons" id="persons">
            <div class="grid-row  kms-content">
                <h2 class="persons__title">{{trans('site/about.title')}}</h2>
                <div class="persons__grid">
                    @foreach($page->translation->groups['person'] as $person)
                        <div class="persons__item">
                            @include('site.partials.blocks.person')
                        </div>
                    @endforeach
                </div>
            </div>
        </section>
    @endif

    @if(isset($links->contact->route))
    <div class="contact-us-block">
        <section class="button-row  grid-row">
            <a class="button  button--on-dark  right" href="/{{$links->contact->route}}">{{trans('site/about.contactus')}}&nbsp;<span class="arrow">@include('site.svg.arrow')</span></a>
        </section>
    </div>
    @endif

@endsection