From 6034b55eee81c82058615f2a349d6c64cfb61e08 Mon Sep 17 00:00:00 2001 From: Jeremy Kerr Date: Tue, 16 Sep 2008 16:43:32 +1000 Subject: [PATCH] Add 404 template Signed-off-by: Jeremy Kerr --- templates/404.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 templates/404.html diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..fe2b0e4 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block title %}404: File not found{% endblock %} +{% block heading %}404: File not found{% endblock %} + +{% block body %} + +

The page URL requested ({{ request_path }}) does not exist.

+ +{% endblock %} -- 2.39.2