www-garbaye/templates/404.html

16 lines
394 B
HTML

{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block title %}404 Not Found | {{ super() }} {% endblock title %}
{% block header %}
<header class="box-shadow">
{{ macros::render_header() }}
</header>
{% endblock header %}
{% block content %}
<h1 class="title">404 Not Found</h1>
<h2 class="title">Erreur : la page recherchée n'existe pas</h2>
{% endblock content %}