23 lines
777 B
HTML
23 lines
777 B
HTML
<!doctype html>
|
||
<html lang="fr">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<title>{{ @errorTitle }} · {{ @app.name }}</title>
|
||
<link rel="icon" href="{{ @BASE }}/assets/favicon.svg" type="image/svg+xml">
|
||
<link rel="stylesheet" href="{{ @BASE }}/assets/app.css">
|
||
</head>
|
||
<body>
|
||
<main class="page">
|
||
<div class="container">
|
||
<section class="empty-state stack" aria-labelledby="error-title">
|
||
<p class="meta-text">Erreur {{ @errorCode }}</p>
|
||
<h1 class="page-title" id="error-title">{{ @errorTitle }}</h1>
|
||
<p>{{ @errorMessage }}</p>
|
||
<a class="button button--ghost" href="{{ 'home' | alias }}">Retour à l’accueil</a>
|
||
</section>
|
||
</div>
|
||
</main>
|
||
</body>
|
||
</html>
|