{% 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 -%}
{% endif -%}