diff options
author | 2019-04-12 00:14:39 +0200 | |
---|---|---|
committer | 2019-04-12 00:14:39 +0200 | |
commit | 7affc403fc1a0e3ca823cb188f1bce08f221dd8a (patch) | |
tree | 0f449345a509df01b597b7a4604cb5f2199d2526 /pydis_site/templates/base | |
parent | New landing page. Not quite done yet. This probably should've been more than ... (diff) |
Implemented a sticky footer system
Diffstat (limited to 'pydis_site/templates/base')
-rw-r--r-- | pydis_site/templates/base/base.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pydis_site/templates/base/base.html b/pydis_site/templates/base/base.html index fecf60cc..5d5fe7ec 100644 --- a/pydis_site/templates/base/base.html +++ b/pydis_site/templates/base/base.html @@ -24,11 +24,15 @@ <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> |