File: D:/HostingSpaces/SBogers68/ouddorp-duin.nl/app/views/layouts/partials/flyer.blade.php
<div class="grid-row @if($page->code_name != 'home')flyer-block-default @else flyer-block @endif">
<div class="grid-col col-12">
{{--If sentence and buttons values are specified in the code--}}
@if(isset($sentence, $button, $layout, $buttonLink))
@if($layout == 'home')
{{-- custom cta block for homepage --}}
<div class="flyer-content-wrapper flyer-home">
<h2 class="flyer-sentence">{{ $sentence }}</h2>
<a href="{{ $buttonLink }}" class="flyer-button">{{ $button }}</a>
</div>
@elseif($layout == 'default')
{{-- default block for cta --}}
<div class="flyer-content-wrapper flyer-default">
<h2 class="flyer-sentence">{{ $sentence }}</h2>
<a href="{{ $buttonLink }}" class="flyer-button" @if(isset($blank) && $blank) target="_blank" @endif>{{ $button }}</a>
</div>
@endif
{{--The sentence and buttons are specified in KMS (dynamic content)--}}
@else
<div class="flyer-content-wrapper flyer-default">
<h2 class="flyer-sentence">{{ $block->sentence }}</h2>
<a href="/uploads/files/uitwaaier.pdf" class="flyer-button">{{ $block->button }}</a>
</div>
@endif
</div>
</div>