@extends('front.layouts.app') @section('content')
@if (!is_null($featured_post))

{{ $featured_post->title }}

@if (!is_empty($featured_post->published_at)) {{ $featured_post->published_at->format('M j') }} @endif {{ markdown_min_read($featured_post->body) }}

{{ $featured_post->excerpt }}

Continue reading...

@endif
@if ($latest_posts->count() > 0) @foreach ($latest_posts as $post) @include('front.partials.post_detail', ['post' => $post]) @endforeach @else
No posts found yet.
@endif
@include('front.partials.about')
@endsection