summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-10-06 21:48:58 -0400
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-10-07 16:48:25 +0200
commit907d40cac424c9c7bf3a190b445858bc6eab949e (patch)
tree2b9194f7cb8f021e8ac49de59b5fbb59fb81ac8a /templates
parent3f7e6358c02d0822c5fe1c2da72a3b32ffe12ec6 (diff)
downloadipsilon-907d40cac424c9c7bf3a190b445858bc6eab949e.tar.gz
ipsilon-907d40cac424c9c7bf3a190b445858bc6eab949e.tar.xz
ipsilon-907d40cac424c9c7bf3a190b445858bc6eab949e.zip
Add pretty handler for 404
Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
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 %}