From 740e26c2ad0801fcb24b423253f422ecdf3c5ebf Mon Sep 17 00:00:00 2001 From: Isaac Bythewood Date: Fri, 27 Apr 2012 02:54:42 +0000 Subject: [PATCH] Added basic 404 and 500 error pages. --- pinry/core/templates/404.html | 15 +++++++++++++++ pinry/core/templates/500.html | 17 +++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 pinry/core/templates/404.html create mode 100644 pinry/core/templates/500.html diff --git a/pinry/core/templates/404.html b/pinry/core/templates/404.html new file mode 100644 index 0000000..956dd02 --- /dev/null +++ b/pinry/core/templates/404.html @@ -0,0 +1,15 @@ +{% extends 'core/base.html' %} + + +{% block title %}404{% endblock %} + +{% block yield %} +
+
+
+

404

+

This page does not exist.

+
+
+
+{% endblock %} diff --git a/pinry/core/templates/500.html b/pinry/core/templates/500.html new file mode 100644 index 0000000..2aa6607 --- /dev/null +++ b/pinry/core/templates/500.html @@ -0,0 +1,17 @@ +{% extends 'core/base.html' %} + + +{% block title %}500{% endblock %} + +{% block yield %} +
+
+
+

500

+

Something went wrong! If you figure out what it was please + submit an issue on Pinry's + GitHub Issue's page.

+
+
+
+{% endblock %}