{% if comment.author_url %}
{# author_url is pre-escaped with esc_url() in ContextBuilder #}
{{ comment.author }}
{% else %}
{{ comment.author }}
{% endif %}
{% if comment.edit_url %}
{{ __('Edit') }}
{% endif %}
{% if comment.reply_url %}
{{ comment.reply_url|raw }}
{% endif %}
{% if comment.children|length > 0 %}
{% for child in comment.children %}
{% include 'partials/comment-item.html.twig' with {'comment': child, 'depth': depth + 1} only %}
{% endfor %}
{% endif %}