{% for comment in comments %}
  • {{ comment.display_name }} {% if comment.parent %}replied{% else %}commented{% endif %} on {{ comment.post.title }}

    On {{ comment.created_at | date('M d, Y') }}

    {{ comment.content | raw }}

  • {% else %}
  • {{ __SELF__.noPostsMessage }}
  • {% endfor %}