@extends('frontend.themes.basic.layouts.app') @section('content') @include('frontend.themes.basic.partials.header', ['title' => $post->title])
{{ $post->title }}

{{ $post->title }}

{!! ad('post_top') !!}

{!! $post->content !!}

@if (!empty($post->tags))
{{ translate('Tags:', 'general') }}
@foreach (explode(',', $post->tags) as $tag) #{{ $tag }} @endforeach
@endif {!! ad('post_bottom') !!}
@if (isPluginEnabled('facebook_comments'))
{{ translate('Comments:', 'general') }}
@endif @if (isPluginEnabled('disqus'))
{{ translate('Comments:', 'general') }}
@endif @if (isPluginEnabled('graphcomment'))
{{ translate('Comments:', 'general') }}
@endif
@include('frontend.themes.basic.blog.sidebar')
@endsection