chore : ajouter fichiers non versionnés (migrations SQL, 404, PROJET.md)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
// Page d'erreur 404 — à inclure après http_response_code(404).
|
||||
// Aucune variable externe requise.
|
||||
$title = '404 — ' . siteTitle();
|
||||
$metaRobots = 'noindex, nofollow';
|
||||
ob_start();
|
||||
?>
|
||||
<div class="container py-5 text-center">
|
||||
<p class="display-1 fw-bold text-muted mb-0">404</p>
|
||||
<h1 class="h3 mb-3">Page introuvable</h1>
|
||||
<p class="text-muted mb-4">
|
||||
Cette adresse ne correspond à aucun contenu.<br>
|
||||
Vous avez peut-être suivi un ancien lien.
|
||||
</p>
|
||||
<a href="/" class="btn btn-primary">← Retour à l'accueil</a>
|
||||
</div>
|
||||
<?php
|
||||
$content = ob_get_clean();
|
||||
include __DIR__ . '/layout.php';
|
||||
Reference in New Issue
Block a user