diff options
-rw-r--r-- | pydis_site/templates/base/base.html | 8 |
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> |