46 lines
1.8 KiB
PHP
46 lines
1.8 KiB
PHP
@extends('front.layout.pages-layout')
|
|
@section('pageTitle', isset($pageTitle) ? $pageTitle : 'Document Title')
|
|
@section('head')
|
|
<meta name="robots" content="noindex,follow">
|
|
@endsection
|
|
@section('meta_tags')
|
|
{!! SEO::generate() !!}
|
|
@endsection
|
|
@section('content')
|
|
<div class="w-full mb-3">
|
|
<h3 class="title-color">{{ $pageTitle }}</h3>
|
|
</div>
|
|
@if ($posts->count())
|
|
<div class="row">
|
|
@foreach ($posts as $post)
|
|
<div class="col-sm-6 col-md-4 col-lg-3 mb-2">
|
|
<article class="mb-2">
|
|
<div class="mb-2">
|
|
<img src="/images/posts/resized/resized_{{ $post->featured_image }}" alt="category_image"
|
|
class="img-fluid rounded-lg" />
|
|
</div>
|
|
<h5>
|
|
<a class="post-title" href="{{ route('read_post', $post->slug) }}">
|
|
{{ $post->title }}
|
|
</a>
|
|
</h5>
|
|
<ul class="list-inline post-meta mb-2">
|
|
<li class="list-inline-item">Date: {{ date_formatter($post->created_at) }}</li>
|
|
<li class="list-inline-item">Kategorie: <a
|
|
href="{{ route('category_posts', $post->post_category->slug) }}"
|
|
class="ml-1">{{ $post->post_category->name }}</a> </li>
|
|
</ul>
|
|
</article>
|
|
</div>
|
|
@endforeach
|
|
</div>
|
|
@else
|
|
<p><span class="text-danger">Keine Posts in dieser Kategorie gefunden</span></p>
|
|
@endif
|
|
|
|
<div class="pagination-block">
|
|
{{ $posts->appends(request()->input())->links('custom_pagination') }}
|
|
</div>
|
|
|
|
@endsection
|