From d2281e669260ef341e67ec5a28ce5e29e12b5722 Mon Sep 17 00:00:00 2001 From: Sergio Oliveira Date: Fri, 18 Oct 2013 14:36:18 -0300 Subject: [PATCH] Removing header and footer from error pages --- src/templates/404.html | 6 ++---- src/templates/500.html | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/src/templates/404.html b/src/templates/404.html index cb4bbb5..cfcb60c 100644 --- a/src/templates/404.html +++ b/src/templates/404.html @@ -1,10 +1,8 @@ {% extends "base.html" %} {% load i18n %} -{% block header %} - {% include "includes/big_header.html" %} -{% endblock %} - {% block main-content %}

{% trans "Not found. Keep searching! :)" %}

{% endblock %} + +{% block footer %}{% endblock %} diff --git a/src/templates/500.html b/src/templates/500.html index 8a5ad4c..256cc9f 100644 --- a/src/templates/500.html +++ b/src/templates/500.html @@ -1,10 +1,8 @@ {% extends "base.html" %} {% load i18n %} -{% block header %} - {% include "includes/big_header.html" %} -{% endblock %} - {% block main-content %}

{% trans "Ooopz... something went wrong!" %}

{% endblock %} + +{% block footer %}{% endblock %} -- libgit2 0.21.2