{% for data in pages %}
{% if pagePropertyName %}
{% set page = data[pagePropertyName] %}
{% else %}
{% set page = data %}
{% endif %}
-
{{ page.path }}
{% if page.isPortal() %}
PORTAL
{% endif %}
{% if page.commentCount > 0 %}
{{ page.commentCount }}
{% endif %}
{% if page.liker.length > 0 %}
{{ page.liker.length }}
{% endif %}
{% if viewConfig.seener_threshold and page.seenUsers.length >= viewConfig.seener_threshold %}
{{ page.seenUsers.length }}
{% endif %}
{% if !page.isPublic() %}
{% endif %}
{% endfor %}
{% if pager %}
{% endif %}