basic-business-template/content/lists/leistungen.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')
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}}">
<img src="{{ $content->image() }}" class="card-img-top">
<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
<script src="http://lumino.xps/admin-assets/libs/lottie-player.js"></script>
<div class="col-12 text-center" style="margin-bottom: 30vh; margin-top: 5vh;">
<lottie-player src="http://lumino.xps/admin-assets/animations/no-results.json" background="transparent" speed="1" style="width: 200px; height: 200px; margin: 0 auto;" loop="" autoplay=""></lottie-player>
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