blob: 5c0cda045acf71f23612b2398308716e2a505f04 (
plain)
1
2
3
4
5
6
7
8
|
{% extends "base.html" %}
{% block content_title %}Erreur 404{% endblock %}
{% block content %}
<section class="body page">
<h1 class="page-title">Erreur 404</h1>
La page que vous cherchez n'existe pas.
</section>
{% endblock content %}
|