{% trans 'Tagged as' %}:
{% for tag in post.tags -%}
{{ tag.name|e }}
{%- if not loop.last %}, {% endif %}
{%- else -%}
{% trans "nothing" %}
{%- endfor %}
{%- if post.comments %}
{% trans "Comments" %}
{%- if cfg.use_flat_comments %}
{%- for comment in post.comments %}
{%- if not comment.blocked %}
{{ render_comment(comment) }}
{%- endif %}
{%- endfor %}
{%- else %}
{%- for comment in post.root_comments recursive %}
{%- if not comment.blocked %}
{{ render_comment(comment, post.comments_enabled
and not cfg.use_flat_comments) }}{% if
comment.children %}
{{ loop(comment.children) }}
{% endif %}
{%- endif %}
{%- endfor %}
{%- endif %}
{%- endif %}
{%- if post.comments_enabled %}