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

{% extends "theme.html" %}
{% block title %}Page inexistante{% endblock %}
{% 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 %}