actuel-inactuel/site/templates/linear.php

21 lines
927 B
PHP
Raw Normal View History

2024-04-15 09:35:39 +02:00
<?php snippet('header') ?>
2024-03-09 11:27:10 +01:00
<main id="<?= $page->template() ?>">
2024-04-07 09:57:55 +02:00
<article>
2024-04-09 08:38:29 +02:00
<?php snippet('cover', array('isOpen' => true), slots: true) ?>
2024-04-07 09:57:55 +02:00
<?php slot('title') ?>
<h2 class="main-title <?= setTitleFontSizeClass($page->title()) ?>"><?= $page->title() ?></h2>
<p>
2024-04-10 16:52:41 +02:00
<span class="light">par</span>
<a class="author" href="/auteurs/<?= Str::slug($page->author()->toUser()->name()) ?>"><?= $page->author()->toUser()->name() ?></a><br>
<span class="light">publié le </span><?= $page->published()->toDate('d/m/Y') ?><br>
<span class="light">dans</span> <a href="<?= $page->parent()->url() ?>"><?= $page->parent()->title() ?></a> / <a href="/categories/<?= $page->category() ?>"><?= $page->category() ?></a>
2024-04-07 09:57:55 +02:00
</p>
<?php endslot() ?>
<?php endsnippet() ?>
2024-04-10 14:55:34 +02:00
<div class="content">
<?= $page->body() ?>
</div>
2024-04-07 09:57:55 +02:00
</article>
2024-04-15 09:16:27 +02:00
</main>
<?php snippet('footer') ?>