{% extends "main/base.html" %} {% load wagtailcore_tags wagtailimages_tags shared_filters %} {% block content %} {% include 'main/includes/layout/simple_page_header.html' %} {{ page.perex|richtext }} {% for people_group in page.people %} {{ people_group.value.title }} {% endfor %} {% for block in page.people %} {% if block.block_type == "people_group" %} {% for person_page in block.value.person_list %} {% include 'main/includes/person_contact_big.html' %} {% endfor %} {% endif %} {% endfor %} {% for block in page.people %} {% if block.block_type == "team_group" %} {% for card_block in block.value.team_list %} {% include_block card_block %} {% endfor %} {% endif %} {% endfor %} {% include 'main/includes/newsletter_section.html' %} {% endblock content %}