blob: 2399b7933a0f4ac1b41fe8638f3654c5f3fec56f (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block title %}
Page not found
{% endblock title %}
{% block content %}
<h1>Page not found</h1>
<p>
{% if exception %}
{{ exception }}
{% else %}
This is not the page you were looking for.
{% endif %}
</p>
{% endblock content %}
|