actuel-inactuel/site/templates/author.php
2024-03-09 17:06:24 +01:00

25 lines
No EOL
619 B
PHP

<?php snippet('header'); ?>
<header id="header" class="minimized">
<div id="logo" >
<a href="/" class="no-line">
<h2 id="actuel">actuel</h2>
<h2 id="inactuel">inactuel</h2>
</a>
</div>
</header>
<main id="<?= $page->template() ?>">
<article>
<div class="article-header">
<h1 class="main-title title-center <?= setTitleFontSizeClass($page->title()) ?>"><?= $page->title() ?></h1>
<p></p>
</div>
<?php snippet('tabs', [
'left' => [
'label' => 'Présentation',
'content' => $page->presentation()
],
'authorFilter' => $page->author()
]) ?>
</article>
</main>