From 62b3afeeedfe054345f86093e2d243e956c1e3c9 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Wed, 26 Feb 2020 11:27:31 +0100 Subject: The project is now using Poetry. --- src/web/templates/errors/404.html | 12 ------------ src/web/templates/errors/500.html | 12 ------------ 2 files changed, 24 deletions(-) delete mode 100644 src/web/templates/errors/404.html delete mode 100644 src/web/templates/errors/500.html (limited to 'src/web/templates/errors') diff --git a/src/web/templates/errors/404.html b/src/web/templates/errors/404.html deleted file mode 100644 index c64a2be8..00000000 --- a/src/web/templates/errors/404.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "layout.html" %} -{% block head %} -{{ super() }} -{% endblock %} -{% block content %} -
-
-

Page Not Found

-

What you were looking for is just not there, go to the home page.

-
-
-{% endblock %} diff --git a/src/web/templates/errors/500.html b/src/web/templates/errors/500.html deleted file mode 100644 index 417fc0c7..00000000 --- a/src/web/templates/errors/500.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "layout.html" %} -{% block head %} -{{ super() }} -{% endblock %} -{% block content %} -
-
-

Internal Server Error

-

Something bad just happened! Go to the home page.

-
-
-{% endblock %} -- cgit