actuel-inactuel/site/templates/author.php

20 lines
545 B
PHP
Raw Normal View History

<?php snippet('header'); ?>
<main id="<?= $page->template() ?>">
<article>
2024-03-10 19:24:24 +01:00
<?php snippet('cover', slots: true) ?>
<?php slot('title') ?>
2024-04-06 10:08:45 +02:00
<h1 class="main-title <?= setTitleFontSizeClass($page->title()) ?>"><?= $page->title() ?></h1>
2024-03-10 19:24:24 +01:00
<?php endslot() ?>
<?php slot('tabs') ?>
<?php snippet('tabs', [
'left' => [
'label' => 'Présentation',
'content' => $page->presentation()
],
'authorFilter' => $page->author()
]) ?>
<?php endslot() ?>
<?php endsnippet() ?>
</article>
</main>