From 143376b950d58b3c2f5af8ff808ce6c4d325c7b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 5 Mar 2012 15:39:08 +0100 Subject: [PATCH] Add some error pages --- html/404.html | 10 ++++++++++ html/500.html | 12 ++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 html/404.html create mode 100644 html/500.html diff --git a/html/404.html b/html/404.html new file mode 100644 index 000000000..65e2d91c4 --- /dev/null +++ b/html/404.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} + +{% block content %} +

Page Not Found

+ +

+The page you are looking for was not found. +

+ +{% endblock %} diff --git a/html/500.html b/html/500.html new file mode 100644 index 000000000..2aed6346d --- /dev/null +++ b/html/500.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block content %} +

Server Error

+ +

+The server had serious problems while serving your request. We've just sent our +trained monkeys to fix the issue. +

+ +{% endblock %} +