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

14 lines
495 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>
<section class="article-card-body">
@if (!empty($date))
<p><time datetime="{{ $date->toIso8601String() }}">{{ $date->isoFormat('LL') }}</time></p>
@endif
@if (!empty($section))
<p>{!! $section->getArticleTitle() !!}</p>
@endif
</section>
</article>
</a>