{% extends "patterns/base_page.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %} {% include "patterns/molecules/hero/report_hero.html" with title=page.strapline %}
{# Introduction section #}

{{ page.introduction_title }}

{# Authors #} {% for page_author in page.authors.all %} {% include "patterns/molecules/author/author.html" with author=page_author.author item=page %} {% endfor %} {# Introduction copy #}
{{ page.introduction|richtext }}
{# Streamfield #} {% for block in page.body %} {# Give some blocks full width container #} {% if block.block_type == 'impact_report_heading' or block.block_type == 'instagram_gallery' %}
{% include_block block %}
{% else %}
{% include_block block %}
{% endif %} {% endfor %}
{% endblock %}