summaryrefslogtreecommitdiff
path: root/template/404.html
blob: e9cf26483dfd113410c8c8f22b445d23432ba986 (plain)
1
2
3
4
5
6
7
8
9
10
11
{%extends "navbase.html" %}
{%block title%}Not found{%endblock%}
{%block content%}
<h1>Not found</h1>
{%if exception%}
<p>{{ exception }}</p>
{%else%}
<p>The specified URL was not found.</p>
{%endif%}
{%endblock%}