@extends('layouts.generic') {{-- SEO, Schema & Share --}} @section('page_title', __('Blog')) @section('share_url', route('blog.get')) @section('share_title', __('Blog') . ' - ' .getSetting('site.name')) @section('share_description', getSetting('site.description')) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('styles') {!! Minify::stylesheet([ ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ ])->withFullUrl() !!} @stop @section('content')
@if(isset($latestPost)) @include('pages.blog.large-article',['post'=>$latestPost]) @endif
@if($articles->count() > 0) @foreach($articles as $article) @include('pages.blog.box-article',['post'=>$article]) @endforeach @endif @if($articles->count() === 0 && !isset($latestPost))

{{__('No blog posts available yet.')}}

{{__('Our team is diligently crafting new content for you. Check back soon for updates!')}}

@endif
{{ $articles->links() }}
@stop