actuel-inactuel/site/templates/newsletter.php

18 lines
600 B
PHP
Raw Permalink Normal View History

2024-12-01 12:55:24 +01:00
<?php snippet('header') ?>
<?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') ?>
<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>
</main>