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

62 lines
1.6 KiB
PHP
Raw Normal View History

2023-07-25 14:32:35 +00:00
@extends('template.'.config('settings.template').'.content.master')
@section('content')
2023-08-23 20:32:08 +00:00
<x-img src="{{ $list->image }}" class="img-fluid" alt=""/>
2023-07-25 14:32:35 +00:00
<div class="container">
2023-07-27 21:49:08 +00:00
<div class="row mb-5">
2023-07-25 14:32:35 +00:00
<div class="col-12">
<h1 class="mb-5 mt-5">{{ $list->name }}</h1>
<p class="fs-5 mb-5">
{{ $list->description }}
</p>
</div>
2024-01-10 11:57:18 +00:00
@if(count($contents) > 0)
@foreach($contents as $content)
<div class="col-12 col-md-6 col-lg-4 mb-4">
<a href="{{ $content->path }}" class="text-decoration-none">
<div class="card h-100 shadow-lg mb-4" id="news-{{$content->id}}">
2024-01-10 18:08:58 +00:00
<x-img src="{{ $content->image() }}" sizes="(max-width: 330px) 330px, 540px" class="img-fluid card-img-top"/>
2024-01-10 11:57:18 +00:00
<div class="card-body">
<h3 class="h5 mb-3">{{$content->title}} </h3>
{!! Str::limit($content->kurzbeschreibung, 180) !!}
</div>
2023-07-27 21:49:08 +00:00
</div>
2024-01-10 11:57:18 +00:00
</a>
</div>
2023-07-25 14:32:35 +00:00
2024-01-10 11:57:18 +00:00
@endforeach
@else
2023-07-25 14:32:35 +00:00
2024-01-10 11:57:18 +00:00
<div class="col-12 text-center" style="margin-bottom: 30vh; margin-top: 5vh;">
2023-07-25 14:32:35 +00:00
2024-01-10 11:57:18 +00:00
<i>
Derzeit keine {{ $list->name }} veröffentlicht.
</i>
2023-07-25 14:32:35 +00:00
</div>
2024-01-10 11:57:18 +00:00
@endif
2023-07-25 14:32:35 +00:00
</div>
</div>
@stop