@extends(get_view('index')) @section('title')@endsection @section('header') @endsection @section('content') @if ( count(Site::get_latest_posts()) > 0 )
@foreach (Site::get_latest_posts() as $post)
@include(get_view('components.posts.horizontal'), ['post' => $post])
@endforeach
@else @include(get_view('components.errors.post-not-found')) @endif @endsection @section('footer') @endsection