{% set content_blocked = post.blocked_by_content_filter(content_filters) or (current_user.hide_nsfw == 3 and post.nsfw) or (current_user.hide_nsfl == 3 and post.nsfl) or (current_user.ignore_bots == 3 and post.from_bot) -%} {% set blur_content = (current_user.hide_nsfw == 2 and post.nsfw) or (current_user.hide_nsfl == 2 and post.nsfl) or (current_user.ignore_bots == 2 and post.from_bot) -%} {% if content_blocked and content_blocked == '-1' -%} {# do nothing - blocked by keyword filter #} {% else -%}
{% if post.type == POST_TYPE_ARTICLE %} {% include "post/post_teaser/_article.html" -%} {% elif post.type == POST_TYPE_LINK %} {% include "post/post_teaser/_link.html" -%} {% elif post.type == POST_TYPE_POLL %} {% include "post/post_teaser/_poll.html" -%} {% elif post.type == POST_TYPE_IMAGE %} {% include "post/post_teaser/_image.html" -%} {% elif post.type == POST_TYPE_VIDEO %} {% include "post/post_teaser/_video.html" -%} {% endif -%}
{% endif -%}