{% load wagtailcore_tags %}

{{ page.title }}

, {{ page.owner.username | title}}
{% for block in page.body %} {# this is either an overview or detail block #} {% if block.block_type != "detail" or render_detail %}
{% for block in block.value %} {# this is a block of content like image, gallery or audio #}
{% include_block block %}
{% endfor %}
{% block detail_link %}{% endblock %} {% endif %} {% endfor %}