diff options
Diffstat (limited to 'pydis_site/templates')
| -rw-r--r-- | pydis_site/templates/base/base.html | 6 | 
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>  |