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 <br/> 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