2024-12-01 12:55:24 +01:00
|
|
|
<?php snippet('header') ?>
|
2025-12-03 16:32:09 +01:00
|
|
|
<?php snippet('footer') ?>
|
2024-12-01 12:55:24 +01:00
|
|
|
<main id="<?= $page->template() ?>">
|
|
|
|
|
<article>
|
|
|
|
|
<?php snippet('cover', array('isOpen' => true), slots: true) ?>
|
|
|
|
|
<?php slot('title') ?>
|
2025-12-03 16:08:25 +01:00
|
|
|
<h1 class="main-title"><?= $page->title() ?></h1>
|
2024-12-01 12:55:24 +01:00
|
|
|
<?= $page->body() ?>
|
|
|
|
|
<form id="subscribe-form">
|
|
|
|
|
<label for="email">
|
|
|
|
|
<input type="email" name="email" id="email" placeholder="votre e-mail">
|
|
|
|
|
<button type="submit" onclick="subscribe(event)">→</button>
|
|
|
|
|
</label>
|
|
|
|
|
</form>
|
|
|
|
|
<?php endslot() ?>
|
|
|
|
|
<?php endsnippet() ?>
|
|
|
|
|
</article>
|
2025-12-03 16:32:09 +01:00
|
|
|
</main>
|