@if (isset($category) && $category)
@if ($category->settings['show_name'])
{{ $category->name }}
@endif
@if ($category->settings['show_description'])
{!! $category->description !!}
@endif
@if (count($posts))
@foreach ($posts as $post)
@include ('themes.starter.partials.post')
@endforeach
@else
No post
@endif
@endif
@push ('scripts')
@endpush