24 lines
No EOL
580 B
PHP
24 lines
No EOL
580 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()
|
|
]
|
|
]) ?>
|
|
</article>
|
|
</main>
|