{% extends "base.html" %} {% block page_title %}People{% endblock %} {% load wagtailcore_tags wagtailimages_tags %} {% block content %}
{% for person_type in page.person_types.all %}
{{ person_type }}
{% endfor %}

{{ page.first_name }} {{ page.last_name }}

{% if page.job_title %}

{{ page.job_title }}

{% endif %} {% if page.photo %} {% image page.photo fill-210x235 class="image image--headshot-mobile" %} {% endif %} {% if page.introduction %}

{{ page.introduction }}

{% endif %} {% include_block page.biography %} {% if page.website %}

Website: {{ page.website }}

{% endif %} {% if page.email %}

Email: {{ page.email }}

{% endif %} {% with contact_details=page.contact_details.all %} {% if contact_details %} {% for contact in contact_details %}

{{ contact.method_display }}: {{ contact.contact_detail }}

{% endfor %} {% endif %} {% endwith %} {% include "utils/includes/funding.html" with class="wrapper--top-outer-space-small" %}
{% if page.photo %} {% image page.photo fill-210x235 class="image image--headshot-desktop" %} {% endif %} {% if page.social_media_profile.all %}
Follow {{ page.first_name }}
{% for item in page.social_media_profile.all %} {% endfor %} {% endif %}
{% endblock %}