共收到{{ replies.total }}条回复
{% if replies.items %}
{% set num = 1 %}
{% for reply in replies.items %}
{{ link_base.user(reply.author.username)}}
{{ reply.publish}}
#{{ num }}
{{ reply.content}}
{% set num = num + 1 %}
{% endfor %}
{% if replies.pages > 1 %}
{% endif %}
{% else %}
暂无回复
{% endif %}