File: D:/HostingSpaces/SBogers10/wingssprayer.komma.pro/resources/views/templates/posts_index.blade.php
@extends('master', [ 'headerIsLight' => true ])
@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="l-contain u-spacing-mt7">
<h1 class="u-fs-xl u-color-tertiary--400">{{__('site/posts.title')}}</h1>
</div>
@if(isset($composedPosts) && $composedPosts->count() > 0)
@include('organisms.postsGrid', [
'postGridDisableHeading' => true
])
@else
<div class="u-spacing-mt7 u-spacing-mb7 u-text-align-center">
<h3 class="u-spacing-pb7">@lang('site/posts.noPosts')</h3>
</div>
@endif
@endsection