{% extends "layouts/default.twig" %} {% block content %} {% if not post.next.no_results %}{% endif %} {% if not post.prev.no_results %}{% endif %}
{% include "feathers/" ~ post.feather ~ ".twig" %} {% if enabled_modules.comments and (post.comment_count > 0 or post.commentable) %}

${ "Comments" | translate }

    {% paginate site.comments_per_page comments in post.comments as comment %} {% include "content/comment.twig" %} {% else %}
  1. {# Needed for AJAX commenting and XHTML Strict validation. #} {% endpaginate %}
$comments.prev_link $comments.next_link {% if comments.pages > 1 %} ${ "Page %d of %d" | translate | format(comments.page, comments.pages) } {% endif %} {% if post.commentable %} {% include "forms/comment/new.twig" %} {% endif %} {% if post.comment_status == "closed" %} ${ "Comments are not accepted on this entry." | translate } {% endif %}
{% endif %} {% endblock %}