1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {% load navigation_tags static wagtailuserbar %}
- {% block head %}
- {% include "includes/head.html" %}
- {% endblock head %}
- <body class="{% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %}">
- {% wagtailuserbar %}
- {% block header %}
- {# Header contains the main_navigation block #}
- {% include "includes/header.html" with parent=site_root calling_page=self %}
- {% endblock header %}
- {% block head-extra %}
- {% endblock head-extra %}
- {% block messages %}
- {% include "includes/messages.html" %}
- {% endblock messages %}
- {% block breadcrumbs %}
- {# breadcrumbs is defined in base/templatetags/navigation_tags.py #}
- {% breadcrumbs %}
- {% endblock breadcrumbs %}
- <main role="main">
- {% block content %}
- {% endblock content %}
- </main>
- <hr>
- <!-- Footer -->
- <footer>
- {% include "includes/footer.html" %}
- </footer>
- <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
- {% load static %}
- <script src="{% static 'js/jquery-1.12.4.min.js' %}"></script>
- <script src="{% static 'js/bootstrap.min.js' %}"></script>
- </body>
- </html>
|