{% load wagtailcore_tags wagtailimages_tags %}
{% if person.photo %} {% image person.photo fill-180x180 %} {% else %} {% endif %}
{% for type in person.person_types.all %}
{{ type }}
{% endfor %}

{{ person.first_name }} {{ person.last_name }}

{% if person.listing_summary or person.introduction %}
{{ person.listing_summary|default:person.introduction|truncatechars:235 }}
{% endif %}