@php Theme::set('pageTitle', $post->name); Theme::set('headerStyle', theme_option('header_style', 'style-1')); Theme::set('headerTopStyle', theme_option('header_top_sidebar_style', 'style-1')); Theme::set('headerFixed', theme_option('header_fixed', true)); @endphp
@if ($image = $post->image)
{{ RvMedia::image($image, $post->name) }}
@endif
@if (! theme_option('theme_breadcrumb_enabled', 1))

{{ $post->name }}

@endif
  • {{ $post->created_at->translatedFormat('M d, Y') }}
  • @if ($post->author && $post->author->exists) @if ($authorDisplayName = ($post->author->getMetaData('display_name', true) ?: $post->author->name))
  • {{ RvMedia::image($post->author->avatar_url, $authorDisplayName) }} {{ __('by :author', ['author' => $authorDisplayName]) }}
  • @endif @endif @if ($post->categories->isNotEmpty())
  • @foreach ($post->categories as $category) @if ($loop->last) {{ $category->name }} @else {{ $category->name }}, @endif @endforeach
  • @endif
@if ($content = $post->content)
{!! BaseHelper::clean($content) !!}
@endif {!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $post) !!}
@if($post->tags->isNotEmpty())
@endif
{{ __('Share:') }}
{!! Theme::renderSocialSharing($post->url, SeoHelper::getDescription(), $post->image) !!}