This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
montpellier-themes/templates/404.html

9 lines
279 B
HTML
Raw Normal View History

2015-07-24 15:11:08 +02:00
{% extends "theme.html" %}
2015-04-30 11:19:32 +02:00
{% block title %}Page inexistante{% endblock %}
2015-04-20 17:40:10 +02:00
{% block content %}
<div id="error-404">
<h2>Page inexistante</h2>
<p>La page <tt>{{ request_path }}</tt> n'existe pas. Souhaitez-vous revenir à <a href="/">l'accueil</a> ?</p>
</div>
{% endblock %}