{% extends "layout.html" %} {% block title %}Recent comments{% endblock %} {% block head %} {% endblock %} {% block breadcrumb %} {% endblock %} {% macro pagination() %}
{% if page > 1 or page * perpage < count %}Comments {{ (page - 1) * perpage + 1 }} to {{ [page * perpage, count] | sort | first }} out of {{ count }} in reverse chronological order.
On {% if comment.site %}{{ comment.author }} {% else %}{{ comment.author }}{% endif %} left comment #{{ comment.id }} on {{ comment.tag.type | capitalize }} {{ comment.tag.ref }} {% for parent in comment.breadcrumb %} {% if parent.type == "chapter" %} in {{ parent.name }} {% endif %} {% endfor %}
{% endif %} {% endfor %}