From 7492febf0848a47aaf67d8e93667101f9e70147f Mon Sep 17 00:00:00 2001 From: Daniel Roschka Date: Sun, 23 Aug 2015 20:35:30 +0200 Subject: [PATCH] Provide a template for not existing resources. Will be of course only used if debugging is disabled. --- binder/templates/404.html | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 binder/templates/404.html diff --git a/binder/templates/404.html b/binder/templates/404.html new file mode 100644 index 0000000..c5bbfb6 --- /dev/null +++ b/binder/templates/404.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block pageheader %}Page not found{% endblock pageheader %} + +{% block body %} +

We're sorry, but the requested page could not be found.

+{% endblock %}