From f6c6ad048a0a4f9c1c52ea1c5450f4934ca08c83 Mon Sep 17 00:00:00 2001 From: David Haynes Date: Tue, 25 Apr 2017 12:08:41 -0400 Subject: [PATCH] Update error pages to confirm to design pattern - fa-exclaimation-triangle - copy paste Closes #140 --- go/go/templates/403.html | 19 +++++++++++++++++-- go/go/templates/404.html | 19 +++++++++++++++++-- go/go/templates/500.html | 20 +++++++++++++++++--- 3 files changed, 51 insertions(+), 7 deletions(-) diff --git a/go/go/templates/403.html b/go/go/templates/403.html index e48edc2..8a684c2 100644 --- a/go/go/templates/403.html +++ b/go/go/templates/403.html @@ -6,11 +6,26 @@ 403 Error • Forbidden {% endblock %} + +{% load staticfiles %} + {% block content %} - -{% load staticfiles %} + +
diff --git a/go/go/templates/404.html b/go/go/templates/404.html index ce6dd3b..f3586e3 100644 --- a/go/go/templates/404.html +++ b/go/go/templates/404.html @@ -6,11 +6,26 @@ 404 Error • Page Not Found {% endblock %} + +{% load staticfiles %} + {% block content %} - -{% load staticfiles %} + +
diff --git a/go/go/templates/500.html b/go/go/templates/500.html index bea5f4c..e5a8e7c 100644 --- a/go/go/templates/500.html +++ b/go/go/templates/500.html @@ -6,12 +6,26 @@ 500 Error • Internal Server Error {% endblock %} - -{% block content %} - {% load staticfiles %} + +{% block content %} + + +
-- GitLab