actuel-inactuel/site/templates/home.php

27 lines
820 B
PHP
Raw Normal View History

2024-01-25 18:34:32 +01:00
<?php snippet('header') ?>
2024-03-09 11:27:10 +01:00
2024-04-11 13:01:50 +02:00
<main>
2024-04-11 12:56:45 +02:00
<article>
<?php snippet('cover', slots: true) ?>
2024-10-25 18:24:19 +02:00
<?php slot('title') ?>
<a
href="#main-edito"
2024-12-01 12:37:11 +01:00
class="no-underline home-baseline"
2024-11-26 10:19:13 +01:00
title="lire l'éditorial"
2024-10-25 18:24:19 +02:00
>
<h2 class="main-title <?= setTitleFontSizeClass($site->subtitle()) ?>"><?= $site->subtitle()->inline() ?></h2>
2024-12-01 12:16:27 +01:00
</a>
2024-12-01 12:37:11 +01:00
<a href="#main-edito" class="main-edito-btn | no-underline" title="lire l'éditorial">
2024-10-25 18:24:19 +02:00
<p
2024-12-01 12:37:11 +01:00
class="oggle-btn toggle-btn--left"
2024-10-25 18:24:19 +02:00
>éditorial</p>
</a>
2024-12-01 12:16:27 +01:00
<button class="plus open-nav" title="ouvrir la navigation">textes</button>
2024-10-25 18:24:19 +02:00
<?php endslot() ?>
2024-04-11 12:56:45 +02:00
<?php endsnippet() ?>
2024-11-26 13:21:42 +01:00
<div id="main-edito" id="main-content">
2024-04-11 10:38:07 +02:00
<?= $site->edito() ?>
</div>
2024-04-11 12:56:45 +02:00
</article>
2024-01-25 18:34:32 +01:00
</main>
<?php snippet('footer') ?>