@extends(view_path('master')) @section('additional_head_tags') @endsection @section('top-panel')
@if(auth_is_admin() && !config('app.top_cover')) {{ __('Refresh') }} @endif
{{ __(config('app.blog.title')) }}
@endsection @section('body')
@if($posts->count())
@foreach($posts as $post) @endforeach
{{ $posts->appends(request()->q ? ['q' => request()->q] : [])->onEachSide(1)->links() }} {{ $posts->appends(request()->q ? ['q' => request()->q] : [])->links('vendor.pagination.simple-semantic-ui') }} @endif
@endsection