aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-14 14:44:15 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-14 14:44:15 +0100
commitadafc9e405434b6b5ce47eff5be0e8be9e9688b6 (patch)
treeef20dee66b0b6b1b881f86853d8636cad257e1f9 /pydis_site/templates
parentSome work towards fixed navigation (diff)
Fixing up image plugin
Diffstat (limited to 'pydis_site/templates')
-rw-r--r--pydis_site/templates/base/base.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html
index 5b124ded..7164ce47 100644
--- a/pydis_site/templates/base/base.html
+++ b/pydis_site/templates/base/base.html
@@ -1,6 +1,5 @@
{# Base template, with a few basic style definitions. #}
-{% load django_simple_bulma %}
-{% load static %}
+{% load django_simple_bulma sekizai_tags static %}
<!DOCTYPE html>
<html lang="en">
@@ -22,6 +21,8 @@
>
{% block head %}{% endblock %}
+
+ {% render_block "css" %}
</head>
<body>
@@ -29,5 +30,6 @@
{{ block.super }}
{% endblock %}
+{% render_block "js" %}
</body>
</html>