@extends('templates._with_sidebar') @section('html.head.title', $post->title . ' -') @section('beforeMain') @include('sections.banner', ['background' => '']) @include('atoms.breadcrumbs', ['back_button' => ['title'=>'News Hub', 'url' => route("news-hub")]]) @php $heading = [ 'title' => $post->title]; if(isset($post->category->label)) $heading['context_title'] = $post->category->label; @endphp @include('atoms.heading_group', $heading) @include('atoms.banner_details', [ 'author' => $post->author, 'date' => $post->updated_at->format('j M Y'), 'downloadable' => true, 'ask_question' => true, 'printable' => true, 'download_title' => $post->title ]) @include('sections.banner_CLOSE') @endsection @section('main')
{!! parseCollapsables($post->page_content) !!}
@endsection @section('disclaimer') @if($post->has_disclaimer) @include('sections.disclaimer') @endif @endsection @section('sidebar') @include('sections.related', ['related' => $post->related_content]) @endsection