{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}

{{ page.title }}

{% if page.published_date %} {% endif %} {% for author in page.authors.all %} {% if not forloop.first %}ยท {% endif %}{{ author.name }} {% endfor %}
{% if page.feed_image %}
{% image page.feed_image width-800 as hero %} {{ hero.alt }}
{% endif %}
{% for block in page.body %} {% if block.block_type == "heading" %} {% if block.value.size == "h2" %}

{{ block.value.text }}

{% elif block.value.size == "h3" %}

{{ block.value.text }}

{% elif block.value.size == "h4" %}

{{ block.value.text }}

{% endif %} {% elif block.block_type == "paragraph" %}
{{ block.value|richtext }}
{% elif block.block_type == "image" %}
{% image block.value width-800 as img %} {{ img.alt }}
{% elif block.block_type == "gallery" %}
{% for item in block.value %}
{% image item.image fill-400x300 as gimg %} {{ gimg.alt }} {% if item.caption %}
{{ item.caption }}
{% endif %}
{% endfor %}
{% endif %} {% endfor %}
← Back to {{ page.get_parent.title }}
{% endblock %}