5 lines
178 B
Twig
5 lines
178 B
Twig
|
{% if comments|length > 0 %}
|
||
|
{% for comment in comments %}
|
||
|
{% include 'Web/Post/comment_list.html.twig' with {'comment': comment} only %}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|