@php Theme::set('pageTitle', $post->name); @endphp
get_header_style() != 2, 'pt-160' => get_header_style() == 2])>
@if($post->firstCategory) {{ $post->firstCategory->name }} @endif

{!! BaseHelper::clean($post->name) !!}

{!! BaseHelper::clean(nl2br($post->description)) !!}

@if ($post->image && theme_option('show_blog_post_featured_image', 'yes') !== 'no') {{ RvMedia::image($post->image, $post->name, attributes: ['class' => 'blog-post-featured-image']) }} @endif
{!! BaseHelper::clean($post->content) !!}
@if ($post->tags->isNotEmpty()) @php if (is_plugin_active('language') && is_plugin_active('language-advanced')) { $post->tags->loadMissing('translations'); } @endphp {!! BaseHelper::renderIcon('ti ti-tags') !!} @foreach ($post->tags as $tag) {{ $tag->name }}@if (!$loop->last), @endif @endforeach @endif
{{ __(':time min read', ['time' => $post->time_reading]) }}
{{ Theme::formatDate($post->created_at) }}
{!! BaseHelper::clean(__('By :author', ['author' => "{$post->author->name}
{{ __('Share') }}
{!! Theme::renderSocialSharing($post->url, SeoHelper::getDescription(), $post->image) !!}

{!! apply_filters(BASE_FILTER_PUBLIC_COMMENT_AREA, null, $post) !!}
@php $relatedPosts = get_related_posts($post->getKey(), 3); @endphp @if($relatedPosts->isNotEmpty())

{{ __('Related posts') }}

@php $itemsPerRow = theme_option('post_item_per_row', 3); @endphp
@foreach($relatedPosts as $post) @include(Theme::getThemeNamespace('views.templates.post-item.index')) @endforeach
@endif