@extends('layouts.layout-inner') @section('content')

{{ isset($pageTitle) ? $pageTitle : 'Untitled' }}

@foreach ($posts as $post)
{{ date('d', strtotime($post->created_at)) }}
{{ date('M Y', strtotime($post->created_at)) }}

{{ $post->title }}

{{ str_limit(strip_tags($post->body), 385) }}

@endforeach
@widget('recentPosts')
@widget('archiveYears')
@endsection @push('scripts') @endpush