{% if post.replies|length > 0 %}
Replies
    {% for reply in post.replies %}
  1. {% if reply.author.url %} {{ reply.author.name }} {% else %} {{ reply.author.name }} {% endif %}

    {% if reply.source|length > 0 %} {{ reply.source }} {% endif %}

    {{ reply.html }}
  2. {% endfor %}
{% endif %} {% if post.reacjis|length > 0 %}
Reactions
{% for reacji, replies in post.reacjis.items() %}
{{ reacji }}
    {% for reply in replies %}
  • {% if reply.author.url %} {{ reply.author.name }} {% else %} {{ reply.author.name }} {% endif %}
  • {% endfor %}
{% endfor %}
{% endif %}