{% load wagtailcore_tags wagtailimages_tags %} {% load static %} {% with person=value.person %}
{% if person.picture %}
{% image person.picture fill-100x150 %}
{% endif %}

{{ person.name }}

    {% for title in person.titles.all %}
  • {{ title.title }}
  • {% endfor %} {% for title in person.custom_titles_list %}
  • {{ title }}
  • {% endfor %}

{{ person.intro }}

{% endwith %}