19 lines
No EOL
760 B
PHP
19 lines
No EOL
760 B
PHP
<li
|
|
class="text"
|
|
>
|
|
<a href="<?= $article->url() ?>" class="text__title no-underline">
|
|
<h3><?= $article->title() ?></h3>
|
|
</a>
|
|
<div class="text__infos">
|
|
<p>
|
|
<span class="light">par</span>
|
|
<a class="author" href="/auteurs/<?= Str::slug($article->author()->toPage()->title()) ?>"><?= $article->author()->toPage()->title() ?></a><br>
|
|
<span class="light">publié le </span><?= $article->published()->toDate('d/m/Y') ?><br>
|
|
<span class="light">dans</span>
|
|
<?php foreach(allYears($article) as $year): ?>
|
|
<a href="<?= $year->url() ?>"><?= $year->title() ?></a> /
|
|
<?php endforeach ?>
|
|
<a href="/categories/<?= $article->category() ?>"><?= $article->category() ?></a>
|
|
</p>
|
|
</div>
|
|
</li>
|