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

{{ person.name }}

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

{{ person.intro }}

{% endwith %}