summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/notfound.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/notfound.html b/templates/notfound.html
new file mode 100644
index 0000000..71743b5
--- /dev/null
+++ b/templates/notfound.html
@@ -0,0 +1,13 @@
+{% extends "master.html" %}
+{% block main %}
+<div class="col-sm-12">
+ <h1>404 - Not Found</h1>
+ {% if message: %}
+ <p>{{ message }}</p>
+ {% else %}
+ <p>This page does not exist.</p>
+ {% endif %}
+ <p>If you think this is an error, contact the server administrator to
+ resolve the problem.</p>
+</div>
+{% endblock %}