File: D:/HostingSpaces/SBogers10/somerenslust.komma.pro/resources/views/site/pages/posts/show.blade.php
@extends('site.master', ['view' => 'default post-detail'])
@section('title', $post->translation->name . ' | '. $page->translation->meta_title)
@section('meta_description', $post->translation->meta_description)
@section('content')
<div class="sidebar blue">
<span class="fill-out"></span>
@include('site.partials.header', ['color' => 'white'])
<div class="sidebar-content">
<div class="grid-row">
<div class="default-page grid-col">
<div class="post-meta">
<h1>{{ $post->translation->name }}</h1>
<p class="date">@lang('site/global.postDate')<span>{{$post->getDate()->format('d-m-y')}}</span></p>
@if(isset($post->photo_link) && $post->photo_link != '')
<a class="photo-album" href="{{$post->photo_link}}" target="_blank">
<span class="icon"></span>
<p>
@lang('site/global.watchPhotoAlbum')
</p>
</a>
@endif
</div>
<div class="extra-content-blocks">
@include('site.partials.dynamic.dynamicBlocks', ['dynamicContent' => $post->translation->description])
</div>
</div>
</div>
</div>
</div>
@if(isset($page->parentMenu))
@include('site.partials.morePages')
@endif
@endsection