@if($image = get_field('image'))
@include('partials.picture', [
'post' => $image['id'],
'sizes' => '(min-width: 768px) 66vw, 100vw'
])
@endif
Back to all blog
{{ html_entity_decode(get_the_title()); }}
@if($content = get_field('content'))
@php $content = str_replace('
', '', $content); @endphp
{!! $content !!}
@endif
@include('components.share-button', [
'button_text' => 'Share on Linkedin',
'platform' => 'linkedin',
'text' => get_the_title(),
'url' => get_permalink()
])
@include('components.share-button', [
'button_text' => 'Share on Twitter',
'platform' => 'twitter',
'text' => get_the_title(),
'url' => get_permalink()
])