From 2b6323cc9c7ce9203d60cdec39389f742253d343 Mon Sep 17 00:00:00 2001 From: Eric Lay Date: Fri, 29 Mar 2024 16:04:34 -0500 Subject: [PATCH] Add files via upload --- templates/404.html | 63 +++++++------------------------------------- templates/500.html | 8 ++++++ templates/error.html | 44 +++++++++++++++++++++++++++++++ 3 files changed, 62 insertions(+), 53 deletions(-) create mode 100644 templates/500.html create mode 100644 templates/error.html diff --git a/templates/404.html b/templates/404.html index 8fe2981..f75fde3 100644 --- a/templates/404.html +++ b/templates/404.html @@ -1,53 +1,10 @@ - - - - - Fuck Your Day - - - {% block body %} - -
-

404

-

You're so lost.

-

-
One of us has made a mistake.
Hang tight, let's try this again. -

-
- {% endblock %} - + +{% extends 'error.html' %} {% block content %} +
+

{{ error }}

+

You're so lost.

+

+
One of us has made a mistake.
Hang tight, let's try this again. +

+
+{% endblock %} diff --git a/templates/500.html b/templates/500.html new file mode 100644 index 0000000..9694edf --- /dev/null +++ b/templates/500.html @@ -0,0 +1,8 @@ + +{% extends 'error.html' %} {% block content %} +
+

{{ error }}

+

oops!

+


Hang tight, let's try this again.

+
+{% endblock %} diff --git a/templates/error.html b/templates/error.html new file mode 100644 index 0000000..8c4958a --- /dev/null +++ b/templates/error.html @@ -0,0 +1,44 @@ + + + + + Fuck Your Day + + + + {% block content %} {% endblock %} +