{% 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_page in person_pages %} {% with person=person_page.person %}
{% if person.picture %}
{% image person.picture fill-100x150 %}
{% endif %}

{{ person.name }}

    {% for title in person.tags.all %}
  • {{ tag }}
  • {% endfor %}

{{ person.intro }}

{% endwith %} {% endfor %} {% endblock %}