{% import 'macros/pagination.jinja' as pagination %}
{% for comment in page.items %}
{% if comment.author is eq('') %} Anonymous said: {% else %} {{ comment.author }} said: {% endif %}
{{ comment.created_at.date().isoformat() }}
{% if comment.replies %} {% endif %}
{% endfor %} {{ pagination.render_pagination(page) }}