{% extends "base.html" %} {% load wagtailcore_tags %} {% block content %}

{{ page.title }}

{% if people.paginator.count %} {% for person in people %} {% include "people/includes/person_listing.html" with person=person %} {% endfor %} {% include "includes/pagination.html" with paginator_page=people %} {% else %} {# no results #} {% endif %}
{% endblock %}