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