{%- import "macros.html" as macros -%}

Comments ({{ comments_count }})

Leave a comment

{% block comments %} {% if comments.is_empty() %}

No comments yet. Be the first to comment!

{% else %} {% let post_id = comments[0].post_id %}
{% for comment in comments %} {% include "posts/comments/card.html" %} {% endfor %}
{% if current_page < max_page %}
{% call macros::spinner(class="text-gray-300 w-6 h-6", highlight_class="text-gray-700", size=24) %}
{% else %}

No more comments. Check back later for more!

{% endif %}
{% endif %}
{% endblock %}