1
0
cms11/resources/views/dossier-card.blade.php

14 lines
487 B
PHP
Raw Normal View History

2024-04-25 00:57:06 +02:00
<a class="article-card-link" href="{{ $bundle->getPath() }}">
<article class="article-card">
<h2>{!! $bundle->getArticleTitle() !!}</h2>
2024-05-09 16:48:54 +02:00
<div class="article-card-body">
2024-04-25 00:57:06 +02:00
@if (!empty($date))
<p><time datetime="{{ $date->toIso8601String() }}">{{ $date->isoFormat('LL') }}</time></p>
@endif
@if (!empty($section))
<p>{!! $section->getArticleTitle() !!}</p>
@endif
2024-05-09 16:48:54 +02:00
</div>
2024-04-25 00:57:06 +02:00
</article>
</a>