actuel-inactuel/site/templates/linear.php
2024-04-10 14:55:34 +02:00

27 lines
No EOL
982 B
PHP

<?php snippet('header', array(
'entryTopPos' => 20
)) ?>
<main id="<?= $page->template() ?>">
<article>
<?php snippet('cover', array('isOpen' => true), slots: true) ?>
<?php slot('title') ?>
<h2 class="main-title <?= setTitleFontSizeClass($page->title()) ?>"><?= $page->title() ?></h2>
<p>
<span class="light">par </span>
<a
class="author"
href="/auteurs/<?= Str::slug($page->author()->toUser()->name()) ?>"
title="Voir les articles d'<?= $page->author()->toUser()->name() ?>"
>
<?= $page->author()->toUser()->name() ?>
</a><br>
<span class="light">publié le </span><?= $page->published()->toDate('d/m/Y') ?>
<span class="light">dans</span> <a href="/categories/<?= $page->category() ?>"><?= $page->category() ?></a>
</p>
<?php endslot() ?>
<?php endsnippet() ?>
<div class="content">
<?= $page->body() ?>
</div>
</article>
</main>