tetawebapp/tetawebapp/templates/error.html

13 lines
456 B
HTML

{% extends "index.html" %}
{% block title %}Erreur{% endblock %}
{% block nav %}{% endblock %}
{% block main %}
<article class='error'>
<h3>404 - Not found</h3>
<img src='/static/images/404.png' alt='404 - Not found' title='404 - Not found'/>
<p>The page you asked for was not found on this server.<br/>
It may has been lost, it may has never existed.<br/>
May be we don't care at all...</p>
</article>
{% endblock %}