{% 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 %}