{% extends "base_content_page.html" %} {% load wagtailimages_tags wagtailcore_tags static i18n %} {% block page_content %}

{{ page.title }}

{{ page.intro | richtext }}
{% if page.image %} {% image page.image format-jpeg width-695 as page_image_1x_jpg %} {% image page.image format-jpeg width-1390 as page_image_2x_jpg %} {% image page.image format-webp width-695 as page_image_1x_webp %} {% image page.image format-webp width-1390 as page_image_2x_webp %} {{ page.image.alternative_text }} {% endif %}
{% for tag in page.tags.all %}#{{ tag.name }}{% endfor %}
{% if page.publication_date %} {% if page.revision_date %} , updated: {% endif %} {% endif %} {% if page.display_authors and page.authors.all %}

{% translate "by" %} {% for author in page.authors.all %} {{ author.person }} {% if not forloop.last %},{% endif %} {% endfor %}

{% endif %}
{% include_block page.body %}
{% if page.show_toc %} {% endif %}
{% endblock page_content %} {% block extra_js %} {% if page.show_toc %} {% endif %} {% endblock %}