{% extends "texsitecleanblog/base.html" %} {% load i18n %} {% load static %} {% load wagtailcore_tags %} {% block head-css %} {{ block.super }} {% endblock %} {% block head-javascript %} {{ block.super }} {% endblock %} {% block clean-blog-body-content %} {{ block.super }} {% for block in page.body %} {% if forloop.first and block.block_type == "intro" %} {% include_block block %} {% endif %} {% endfor %}
{% for block in page.body %} {% if block.block_type != "intro" %} {% include_block block %} {% endif %} {% endfor %} {% with parent=page.get_parent next=page.next_sibling previous=page.previous_sibling %} {% if parent.url or next or previous %}
{% include "texsitecleanblog/includes/navigator.html" with parent=page next=next previous=previous only %} {% endif %} {% endwith %}
{% endblock %} {% block body-javascript %} {{ block.super }} {% endblock %}