basic-business-template/content/lists/aktuelles.blade.php

64 lines
1.8 KiB
PHP
Raw Normal View History

2023-07-25 14:32:35 +00:00
@extends('template.'.config('settings.template').'.content.master')
@section('content')
<img src="{{ $list->image }}" class="img-fluid" alt="">
<div class="container">
<div class="row mb-5">
<div class="col-12">
<h1 class="mb-5 mt-5">{{ $list->name }}</h1>
<p class="fs-5 mb-5">
{{ $list->description }}
</p>
</div>
@foreach($contents as $content)
<div class="col-12 col-md-4 mb-3">
2023-07-25 16:33:26 +00:00
<div class="card shadow-sm h-100">
2023-07-25 14:32:35 +00:00
<img src="{{ $content->image() }}" class="img-fluid card-img-top">
<div class="card-body">
<h3 class="h5 mb-2">{{$content->title}} </h3>
<div class="text-muted small my-3">{{ $content->updated_at->diffForHumans() }}</div>
{!! Str::limit($content->vorschau, 280) !!}
</div>
<div class="card-footer text-end">
<a class="btn btn-sm btn-ci" href="{{ $content->path }}" onclick="gtag('event', 'See Job', {'event_category' : 'Home', 'event_label' : '{{$content->title}}'});">
Mehr lesen
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-chevron-right" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z" />
</svg>
</a>
</div>
</div>
</div>
@endforeach
</div>
</div>
@stop