{% 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 %}