aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/templates/base/base.html
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-04-20 14:39:16 +0100
committerGravatar Gareth Coles <[email protected]>2019-04-20 14:39:16 +0100
commit43039cd13afd19ea59addc3bb92c3c600826d8a3 (patch)
tree1aaaf8b862a7b55836c6a64a16d2fc4cb4100e60 /pydis_site/templates/base/base.html
parentAddress reviews (diff)
parentMerge pull request #213 from python-discord/django_front_page (diff)
Merge branch 'django' into django+200/wiki
# Conflicts: # Pipfile # Pipfile.lock # pydis_site/apps/home/tests/test_app_basics.py # pydis_site/apps/home/urls.py # pydis_site/hosts.py # pydis_site/settings.py
Diffstat (limited to 'pydis_site/templates/base/base.html')
-rw-r--r--pydis_site/templates/base/base.html13
1 files changed, 9 insertions, 4 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html
index 7164ce47..99e00fe4 100644
--- a/pydis_site/templates/base/base.html
+++ b/pydis_site/templates/base/base.html
@@ -20,15 +20,20 @@
crossorigin="anonymous"
>
+ <link rel="stylesheet" href="{% static "css/base/base.css" %}">
{% block head %}{% endblock %}
{% render_block "css" %}
</head>
-<body>
+<body class="site">
-{% block content %}
- {{ block.super }}
-{% endblock %}
+<main class="site-content">
+ {% block content %}
+ {{ block.super }}
+ {% endblock %}
+</main>
+
+{% include "base/footer.html" %}
{% render_block "js" %}
</body>