From 907d40cac424c9c7bf3a190b445858bc6eab949e Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 6 Oct 2014 21:48:58 -0400 Subject: Add pretty handler for 404 Signed-off-by: Simo Sorce Reviewed-by: Patrick Uiterwijk --- templates/notfound.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/notfound.html (limited to 'templates') 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 %} +
+

404 - Not Found

+ {% if message: %} +

{{ message }}

+ {% else %} +

This page does not exist.

+ {% endif %} +

If you think this is an error, contact the server administrator to + resolve the problem.

+
+{% endblock %} -- cgit