{{thread.account.display_name | safe}}
{{thread.content | safe}}
{% if thread.descendants is defined %}
{% for media in thread.media_attachments %}
{% if media.type == 'image'%}
{% elif media.type == 'gifv' %}
Your browser does not support the video tag.
{% endif %}
{% endfor %}
{% endif %}
{% if thread.media_attachments|length <= 0 and thread.card %}
{{ thread.card.provider_name or
thread.card.provider_url }}
{{ thread.card.title }}
{{thread.card.description}}
{% endif %}
{% if thread.descendants is defined %}
{% for descendant in thread.descendants %}
{% if descendant.account.avatar is defined %}
{% endif %}
{{descendant.account.display_name | safe}}
{{ descendant.content | safe }}
{% for media in descendant.media_attachments %}
{% if media.type == 'image'%}
{% elif media.type == 'gifv' %}
Your browser does not support the video tag.
{% endif %}
{% endfor %}
{% if descendant.media_attachments|length <= 0 and descendant.card %}
{{ descendant.card.provider_name or
descendant.card.provider_url }}
{{ descendant.card.title }}
{{descendant.card.description}}
{% endif %}
{% endfor %}
{% else %}
Read full thread
{% endif %}