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/SBogers107/jeugdsportdagen.nl/app/views/layouts/pages/serviceDetail.blade.php
@extends('layouts.master')

@section('editable_content')
    <div class="header-background">
        <div class="content-container">

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

            <div class="service-detail">
                <h2 class="title">{{$page->translation->name}}</h2>
                {{$page->translation->sub_title}}

                @if(isset($page->translation->description))
                    <div class="dynamic-content">
                        @foreach($page->translation->description as $block)
                            @if($block->status)
                                @include('layouts.partials.dynamic.'.$block->typeSlug, ['dynamicContent' => $block])
                            @endif
                        @endforeach
                    </div>
                @endif


                <a href="/{{$links->services->route}}">
                    <div class="post-back-button">Terug</div>
                </a>

            </div>



        </div>
    </div>

    @include('layouts.partials.cta')


@endsection

@section('extra-js')
    <script type="text/javascript" src="/js/jquery.touchSwipe.min.js"></script>
    <script type="text/javascript" src="/js/slider.js"></script>
@endsection