From a3184c5d142848b5147811ed246e39545e978805 Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 18 Mar 2019 16:57:31 +0000 Subject: refactor --- app/templates/errors/404.html | 6 ++++++ app/templates/errors/500.html | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 app/templates/errors/404.html create mode 100644 app/templates/errors/500.html (limited to 'app/templates/errors') diff --git a/app/templates/errors/404.html b/app/templates/errors/404.html new file mode 100644 index 0000000..80f5bd6 --- /dev/null +++ b/app/templates/errors/404.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} + +{% block app_content %} +

Page Not Found

+

Home

+{% endblock %} diff --git a/app/templates/errors/500.html b/app/templates/errors/500.html new file mode 100644 index 0000000..5297e6a --- /dev/null +++ b/app/templates/errors/500.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block app_content %} +

An unexpected error has occurred

+

The administrator has been notified, apologies for the inconvenience.

+

Home

+{% endblock %} -- cgit v1.2.3