File: D:/HostingSpaces/SBogers10/somerenslust.komma.pro/resources/views/site/pages/posts/index.blade.php
@extends('site.master')
@section('title', $page->translation->meta_title)
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="sidebar blue">
<span class="fill-out light-grey"></span>
@include('site.partials.header', ['color' => 'white'])
<div class="sidebar-content">
<div class="grid-row">
<div class="news-block grid-col">
<h1>@lang('site/global.discoverNews')</h1>
<div class="post-overview">
@foreach( $posts as $post)
<article>
<a href="/{{$links->news->route}}/{{$post->translation->slug}}">
@if($post->images->count() != 0)
<figure>
<img alt="post-image" src="{{$post->images->first()->small}}"/>
</figure>
@endif
<div class="content">
<h5>{{$post->translation->name}}</h5>
<p>{!! $post->translation->meta_description !!}</p>
<span class="read-more">@lang('site/global.readMore')<span class="icon"></span> </span>
</div>
</a>
</article>
@endforeach
</div>
</div>
</div>
</div>
</div>
<div class="pagination-row">
<div class="grid-row">
{{$posts->links()}}
</div>
</div>
@include('site.partials.otherPages', ['otherPages' => [ 'calender', 'akkoords', 'sponsors', 'contact']])
@endsection