12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {% 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 %}
- {% include "includes/header.html" with parent=site_root calling_page=self %}
- {# Header contains the main_navigation block #}
- {% endblock header %}
- {% block head-extra %}
- {% endblock head-extra %}
- {% block messages %}
- {% include "includes/messages.html" %}
- {% endblock messages %}
- {% block breadcrumbs %}
- {% breadcrumbs %}
- {# breadcrumbs is defined in base/templatetags/navigation_tags.py #}
- {% endblock breadcrumbs %}
- <content>
- {% block content %}
- {% endblock content %}
- </content>
- <hr>
- <!-- Footer -->
- <footer>
- {% include "includes/footer.html" %}
- </footer>
- <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
- <!-- Theme JavaScript -->
- <script src="{% static 'js/clean-blog.min.js' %}"></script>
- </body>
- </html>
|