@extends('_layouts.master')
@section('body')
@foreach ($posts->where('featured', true) as $featuredPost)
@if ($featuredPost->cover_image)

@endif
{{ $featuredPost->getDate()->format('F j, Y') }}
{!! $featuredPost->getExcerpt() !!}
Read
@if (! $loop->last)
@endif
@endforeach
@include('_components.newsletter-signup')
@foreach ($posts->where('featured', false)->take(6)->chunk(2) as $row)
@foreach ($row as $post)
@include('_components.post-preview-inline')
@if (! $loop->last)
@endif
@endforeach
@if (! $loop->last)
@endif
@endforeach
@stop