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/SBogers106/rvt-trainingen.nl/app/views/layouts/pages/home.blade.php
@extends('layouts.master')

@section('editable_content')

    {{-- If Image is added in KMS (home_slogan) it will show up as hero image --}}
    <section class="hero-image streamer" @if(isset($page->content->home_slogan) && $page->content->home_slogan->images->count() != 0) style="background-image: url('{{$page->content->home_slogan->images->first()->original_image_url}}');" @endif>
        <div class="grid-row">
            @if(isset($page->content->home_slogan))
                <h1>{{ $page->content->home_slogan->translation->name }}</h1>
                <h3>{{ $page->content->home_slogan->translation->description }}</h3>
            @else
                <h1>Voeg een tekstblok toe met<br/>code_name 'home_slogan'</h1>
                <h3>Titel + Omschrijving + 1 afbeelding. In de titel kan eventueel &lt;br/&gt; gezet<br/>worden om een enter te maken.</h3>
            @endif
        </div>
    </section>

    <section class="intro">
        @include('layouts.partials.introRow')
    </section>

    <section class="discover">
        @include('layouts.partials.discoverRow')
    </section>

    <section class="cta">
        @include('layouts.partials.cta')
    </section>

@endsection