23 lines
910 B
HTML
23 lines
910 B
HTML
{{ define "main" }}
|
|
<div class="error-page">
|
|
<div class="error-content">
|
|
<div class="error-code">404</div>
|
|
<h1>Page non trouvée</h1>
|
|
<p>Oups ! La page que vous recherchez semble avoir disparu dans le cyberespace.</p>
|
|
<div class="error-illustration">
|
|
<div class="astronaut">
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
<a href="/" class="home-button">
|
|
Retour à l'accueil
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
|
|
<path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|