{% for toot in toots recursive%}
{% if toot.spoiler_text != "" %} CW: {{toot.spoiler_text|safe}} {% endif %} {{ toot.content|safe }}
{% if toot.medias %} {% for media in toot.medias%} {% if media.type == 'image' %} {% elif media.type in ['gifv','video','audio'] %}
{% endif %} {% endfor%} {% endif %}
{% if toot.replies_count %} ↩️ {{ toot.replies_count }} {% else %} ↩️ {{ toot.replies_count }} {% endif %} {% if toot.reblogged %} πŸ”„ {{ toot.reblogs_count}} {% else %} πŸ”„ {{ toot.reblogs_count}} {% endif %} {% if toot.favourited %} ⭐ {{ toot.favourites_count }} {% else %} ⭐ {{ toot.favourites_count }} {% endif %} {% if toot.bookmarked %} πŸ”– {% endif %}
{%- if toot.reply -%}
{{ loop(toot.reply) }}
{%- endif %} {% endfor %}