@extends(get_view('index'))
@section('title'){{ translate('blog') }} - @endsection
@section('header')
@endsection
@section('content')
{{ translate('blog') }}
@if ( $posts != null && count($posts) > 0 )
@foreach ($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