base.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {% load navigation_tags static wagtailuserbar %}
  2. {% block head %}
  3. {% include "includes/head.html" %}
  4. {% endblock head %}
  5. <body>
  6. {% wagtailuserbar %}
  7. {% block header %}
  8. {% include "includes/header.html" with parent=site_root calling_page=self %}
  9. {# Header contains the main_navigation block #}
  10. {% endblock header %}
  11. {% block head-extra %}
  12. {% endblock head-extra %}
  13. {% block messages %}
  14. {% include "includes/messages.html" %}
  15. {% endblock messages %}
  16. <content>
  17. {% block content-header %}
  18. {% endblock content-header %}
  19. {% block breadcrumbs %}
  20. {% breadcrumbs %}
  21. {# breadcrumbs is defined in base/templatetags/navigation_tags.py #}
  22. {% endblock breadcrumbs %}
  23. {% block content-body %}
  24. {% endblock content-body %}
  25. </content>
  26. <hr>
  27. <!-- Footer -->
  28. <footer>
  29. {% include "includes/footer.html" %}
  30. </footer>
  31. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  32. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  33. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
  34. <!-- Theme JavaScript -->
  35. <script src="{% static 'js/clean-blog.min.js' %}"></script>
  36. </body>
  37. </html>