aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-20 14:46:24 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-20 14:46:24 +0100
commit867fcfbdcd382e417a60aae2f809d184a2529aed (patch)
treee450e2c0bc469bb2bd16c46435ad593774644787 /pydis_site
parentMerge settings/Pipfile.lock (diff)
base.html: Load tags on multiple lines
Diffstat (limited to 'pydis_site')
-rw-r--r--pydis_site/templates/base/base.html8
1 files changed, 6 insertions, 2 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html
index 99e00fe4..d7e764a2 100644
--- a/pydis_site/templates/base/base.html
+++ b/pydis_site/templates/base/base.html
@@ -1,5 +1,7 @@
{# Base template, with a few basic style definitions. #}
-{% load django_simple_bulma sekizai_tags static %}
+{% load django_simple_bulma %}
+{% load sekizai_tags %}
+{% load static %}
<!DOCTYPE html>
<html lang="en">
@@ -33,7 +35,9 @@
{% endblock %}
</main>
-{% include "base/footer.html" %}
+{% block site_footer %}
+ {% include "base/footer.html" %}
+{% endblock %}
{% render_block "js" %}
</body>