{% set content_blocked = post.blocked_by_content_filter(content_filters) %} {% if content_blocked and content_blocked == '-1' %} {# do nothing - blocked by keyword filter #} {% else %}
{% if post.image_id %} {% if post_layout == 'masonry' or low_bandwidth %} {% set thumbnail = post.image.thumbnail_url() %} {% elif post_layout == 'masonry_wide' %} {% set thumbnail = post.image.view_url() %} {% endif %}
{% if post.type == POST_TYPE_LINK %} {% if post.image.medium_url() %} {{ post.image.alt_text if post.image.alt_text else '' }} {% elif post.image.source_url %} {{ post.title }} {% else %} {{ post.title }} {% endif %} {% elif post.type == POST_TYPE_IMAGE %} {{ post.image.alt_text if post.image.alt_text else '' }} {% else %} {{ post.image.alt_text if post.image.alt_text else '' }} {% endif %}
{% include "post/_post_voting_buttons_masonry.html" %}
{% if post.reply_count %}{{ post.reply_count }}{% endif %}
{% else %} {% if post.url and (post.url.endswith('.jpg') or post.url.endswith('.webp') or post.url.endswith('.png') or post.url.endswith('.gif') or post.url.endswith('.avif') or post.url.endswith('.jpeg')) %}
{{ post.title }}
{% include "post/_post_voting_buttons_masonry.html" %}
{% if post.reply_count %}{{ post.reply_count }}{% endif %}
{% else %}

{{ post.title }}

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