diff options
author | Magnus Hagander | 2015-01-19 21:36:07 +0000 |
---|---|---|
committer | Magnus Hagander | 2015-01-19 21:36:07 +0000 |
commit | 70a3658ad249727c2c21837bd7710d0ca4110300 (patch) | |
tree | 986a1a00bb516ffa1c1caf284fb793b214c27528 | |
parent | 27da92efb0be66dfc1a68a6da469808c5f6f1df2 (diff) |
Add a 404 template
-rw-r--r-- | pgcommitfest/commitfest/templates/404.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/pgcommitfest/commitfest/templates/404.html b/pgcommitfest/commitfest/templates/404.html new file mode 100644 index 0000000..ccf5146 --- /dev/null +++ b/pgcommitfest/commitfest/templates/404.html @@ -0,0 +1,7 @@ +{%extends "base.html" %} +{%block title%}Not found{%endblock%} +{%block contents%} +<h1>Not found</h1> +<p>The specified URL was not found.</p> +{%endblock%} + |