base.html 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {% load navigation_tags static wagtailuserbar %}
  2. {% block head %}
  3. {% include "includes/head.html" %}
  4. {% endblock head %}
  5. <body class="{% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %}">
  6. {% wagtailuserbar %}
  7. {% block header %}
  8. {# Header contains the main_navigation block #}
  9. {% include "includes/header.html" with parent=site_root calling_page=self %}
  10. {% endblock header %}
  11. {% block head-extra %}
  12. {% endblock head-extra %}
  13. {% block messages %}
  14. {% include "includes/messages.html" %}
  15. {% endblock messages %}
  16. {% block breadcrumbs %}
  17. {# breadcrumbs is defined in base/templatetags/navigation_tags.py #}
  18. {% breadcrumbs %}
  19. {% endblock breadcrumbs %}
  20. <main role="main">
  21. {% block content %}
  22. {% endblock content %}
  23. </main>
  24. <hr>
  25. <!-- Footer -->
  26. <footer>
  27. {% include "includes/footer.html" %}
  28. </footer>
  29. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  30. {% load static %}
  31. <script src="{% static 'js/jquery-1.12.4.min.js' %}"></script>
  32. <script src="{% static 'js/bootstrap.min.js' %}"></script>
  33. </body>
  34. </html>