{#
comments - list of the comments to display
mobile_depth
#}
{% if mobile_depth is not defined %}
{% set mobile_depth = h.comments_mobile_depth_threshold() %}
{% endif %}
{% for comment in comments recursive %}
{% if loop.depth > mobile_depth %}
...
{% endif %}
{% snippet 'comments/snippets/comment.html', comment=comment %}
{% if comment.replies %}