<section class="comments-section" aria-label="Comments">
<h3>Comments</h3>
{% from "_comment.html" import render_comment with context %}
{% for item in comments %}
{{ render_comment(item, 0) }}
{% else %}
<p class="no-comments-msg">No comments yet. Start the discussion.</p>
{% endfor %}
{% set _comment_target_uid = target_uid %}{% set _comment_target_type = target_type %}{% include "_comment_form.html" %}
</section>