{% extends "base.html" %} {% load static wagtailcore_tags ppa_page_tags %} {% block page-subtitle %}{% firstof page.seo_title page.title %} ยท {% endblock %} {% block page-context-id %}page{% endblock %} {% block page_nav %} {% if page in request.site.root_page.get_chidren.live.in_menu %} {% include 'snippets/nav.html' %} {% else %} {% include 'snippets/nav.html' with active="about" %} {% endif %} {% endblock %} {% block page_header %} {% include 'snippets/header.html' with style='contentpage' %} {% endblock %} {# page title displayed in page header snippet ? or only for some content pages #} {% block content %}

{% firstof page.title page_title object.title %} {% block attribution %}{% endblock %}

{% block page_body %} {% for block in page.body %} {% if block.block_type == 'paragraph' %}
{% include_block block|format_citation:SW_VERSION %}
{% elif block.block_type == 'captioned_image' %} {% include_block block %} {% else %}
{% include_block block %}
{% endif %} {% endfor %} {% endblock %}
{% endblock %}