File: D:/HostingSpaces/carrotps/carrotps.com/resources/views/site/templates/posts_show.blade.php
@extends('site.master', [ 'headerIsLight' => true ])
@section('title', $post->translation->meta_title != '' ? $post->translation->meta_title : $post->translation->name .' | '. $page->translation->name .' | '. config('site.company_name'))
@section('meta_description', $post->translation->meta_description)
@section('content')
@include('site.organisms.heroContentImage', [
'model' => $post,
'backToLink' => $links->posts->route,
'backToLabel' => __('site/posts.backToLabel'),
/*'intro_type' => 'is-intro-alt'*/
])
POSTS SHOW!
@include('site.organisms.components')
<div class="l-contain o-block">
<div class="l-restrict-narrow">
@include('site.components.subnav', [
'menuName' => trans('site/posts.menuName'),
'models' => $latestPosts,
'modelTypeRoute' => $links->posts->route,
'activeModelId' => $post->id,
'showBackToIndex' => true,
'backToLabel' => __('site/posts.backToLabel'),
])
</div>
</div>
@include('site.organisms.calloutBar', [
'connect'=> false,
])
@endsection