summaryrefslogtreecommitdiffstats
path: root/templates/404.html
blob: fe2b0e4e270ddbada0ed98fc70233ce3e9a22686 (plain)
1
2
3
4
5
6
7
8
9
10
{% extends "base.html" %}

{% block title %}404: File not found{% endblock %}
{% block heading %}404: File not found{% endblock %}

{% block body %}

<p>The page URL requested (<code>{{ request_path }}</code>) does not exist.</p>

{% endblock %}