20 lines
No EOL
499 B
PHP
20 lines
No EOL
499 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() ?>">
|
|
<?php snippet('tabs', [
|
|
'left' => [
|
|
'label' => 'Édito ' . $page->parent()->title(),
|
|
'content' => $page->parent()->edito()
|
|
]
|
|
]) ?>
|
|
<h1 class="title-center"><?= $page->title() ?></h1>
|
|
</main>
|
|
|
|
<?php snippet('footer') ?>
|