{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags %} {% load static %} {% block extra_css %} {% endblock %} {% block body_class %}template-personindexpage{% endblock %} {% block content %}

{{ page.title }}

{{ page.intro|richtext }}
{% for person in person_pages %}
{% 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 }}

{% endfor %} {% endblock %}