{{ icon("reply") }}
Reply to
{{ item["in-reply-to"][0] | replace("https://", "") | replace("http://", "") | truncate(50) }}
{% endif %}
{# Title #}
{% if item.name %}
{{ item.name }}
{% endif %} {# Content #} {% if item.content %}
{% if item.content.html %}
{{ item.content.html | safe | striptags | truncate(400) }}
{% elif item.content.text %}
{{ item.content.text | truncate(400) }}
{% endif %}
{% endif %}
{# Tags #}
{% if item.category and item.category.length > 0 %}
{% for cat in item.category %}
{% if loop.index0 < 5 %}
#{{ cat }}
{% endif %}
{% endfor %}
{% endif %}
{# Photos #}
{% if item.photo and item.photo.length > 0 %}
{% set photoCount = item.photo.length if item.photo.length <= 4 else 4 %}
{% for photo in item.photo %}
{% if loop.index0 < 4 %}
{% endif %}
{% endfor %}
{% endif %}
{# Footer #}
{# Actions #}