diff options
author | 2019-04-14 17:00:43 +0100 | |
---|---|---|
committer | 2019-04-14 17:00:43 +0100 | |
commit | cc5f3b7321c6992e0c7e324c735bb5272d8e5ae3 (patch) | |
tree | d5c9e5396f3c02e0673f742c0b0bbd41162fc66c /pydis_site/templates/wiki/base.html | |
parent | Remove attachments plugin, add plugin templates (diff) |
Modals and breadcrumb work
Diffstat (limited to 'pydis_site/templates/wiki/base.html')
-rw-r--r-- | pydis_site/templates/wiki/base.html | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/pydis_site/templates/wiki/base.html b/pydis_site/templates/wiki/base.html index 1affbe39..4982fe78 100644 --- a/pydis_site/templates/wiki/base.html +++ b/pydis_site/templates/wiki/base.html @@ -17,20 +17,19 @@ {% endblock %} {% block content %} - {% include "base/navbar.html" with active_item=True dropdowns=True icon_weight="far" use_logo=True %} + {% block site_navbar %} + {% include "base/navbar.html" with active_item=True dropdowns=True icon_weight="far" use_logo=True %} + {% endblock %} {% block wiki_navbar %} {% endblock %} {% block wiki_body %} - <section class="section"> <div class="container"> {% wiki_messages %} - {% block wiki_breadcrumbs %}{% endblock %} - <div class="content"> {% block wiki_contents %}{% endblock %} </div> @@ -38,7 +37,9 @@ </section> {% endblock %} - {% include "base/footer.html" %} + {% block site_footer %} + {% include "base/footer.html" %} + {% endblock %} <script src="{% static "js/wiki/load_editor.js" %}" type="text/javascript"></script> {% endblock %} |