{% if comments.is_empty() %}

No comments.

{% else %}
{% for c in &comments %}
{{ c.username }} {% if c.upvote %} {% else %} {% endif %} {{ c.created_at }}

{{ c.comment }}

{% endfor %}
{% endif %}