actuel-inactuel/site/templates/error.php

18 lines
451 B
PHP
Raw Normal View History

2025-01-26 13:00:50 +01:00
<?php snippet('header') ?>
<main id="<?= $page->template() ?>">
<article>
<?php snippet('cover', ['isOpen' => true], slots: true) ?>
<?php slot('title') ?>
<h2
class="main-title fs-xl">
<?= $page->title() ?></h2>
<?php endslot() ?>
2025-01-26 13:00:50 +01:00
<?php endsnippet() ?>
<div id="main-content">
<?= $page->body() ?>
2025-02-05 15:02:44 +01:00
<p><a href="/">Retour à l'accueil</a></p>
2025-01-26 13:00:50 +01:00
</div>
</article>
</main>
<?php snippet('footer') ?>