819d6d1b8f
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
635 B
PHP
20 lines
635 B
PHP
<?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';
|