{#<?php#}
<section id="comments" class="{% if layout == '0' %}container {% endif %}comments">

	<div class="respond">
		<h3 class="h2">{{ __( 'Comments', 'maera' ) }}</h3>
		{{ comment_form }}
	</div>

	<div class="responses">
		{% for cmt in post.get_comments() %}
			{% include [post.post_type~'-comment.twig', 'comment.twig'] with {comment:cmt} %}
		{% endfor %}
	</div>

</section>
