diff options
author | 2019-04-20 14:41:40 +0200 | |
---|---|---|
committer | 2019-04-20 14:41:40 +0200 | |
commit | 14f8ca26b85f7cc3e009fb9ba2ac549e751c8068 (patch) | |
tree | 041b093b2c9296fe23eb6e1bb54d0748fbe58dfa /pydis_site/templates/base/base.html | |
parent | Revert linter to non-verbose. (diff) | |
parent | Make the flakes happy. (diff) |
Merge pull request #213 from python-discord/django_front_page
Django front page
Diffstat (limited to 'pydis_site/templates/base/base.html')
-rw-r--r-- | pydis_site/templates/base/base.html | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html index 5b124ded..5d5fe7ec 100644 --- a/pydis_site/templates/base/base.html +++ b/pydis_site/templates/base/base.html @@ -21,13 +21,18 @@ crossorigin="anonymous" > + <link rel="stylesheet" href="{% static "css/base/base.css" %}"> {% block head %}{% endblock %} </head> -<body> +<body class="site"> -{% block content %} - {{ block.super }} -{% endblock %} +<main class="site-content"> + {% block content %} + {{ block.super }} + {% endblock %} +</main> + +{% include "base/footer.html" %} </body> </html> |