{% macro personsCards(persons, title) %} {% if persons is not empty %}

{{ title }}

{% lazyFor person in persons %}
{{ personCard(person) }}
{% endLazyFor %} {% endif %} {% endmacro %} {% macro personCard(person) %} {% if person is not empty %}
{% if person.hasAvailableWebSite %} {{person.profile.displayName}} {% else %} {{person.name}} {% endif %}
{{person.profile.email}}
{% endif %} {% endmacro %}