{% if post.type == POST_TYPE_IMAGE %}
{% include "post/_post_voting_buttons.html" %}

{{ post.title }} {% if current_user.is_authenticated and post.user_id == current_user.id %} {% include 'post/_post_notification_toggle.html' %} {% endif %}

{% if post.url %}

{{ post.url|shorten_url }}

{% endif %}

{% if post.reports and current_user.is_authenticated and post.community.is_moderator(current_user) %} {% endif %}submitted {{ moment(post.posted_at).fromNow() }} by {{ render_username(post.author) }} {% if post.edited_at %} edited {{ moment(post.edited_at).fromNow() }}{% endif %}

{% if post.image_id %} {% if low_bandwidth %} {{ post.image.alt_text }} {% else %} {{ post.image.alt_text }} {% endif %} {% else %} {% endif %}
{{ post.body_html|safe if post.body_html else '' }}
{% else %}
{% include "post/_post_voting_buttons.html" %}

{{ post.title }} {% if current_user.is_authenticated and post.user_id == current_user.id %} {% include 'post/_post_notification_toggle.html' %} {% endif %}

{% if post.type == POST_TYPE_LINK and post.image_id and not (post.url and 'youtube.com' in post.url) %}
{{ post.image.alt_text }}
{% endif %}

{% if post.reports and current_user.is_authenticated and post.community.is_moderator(current_user) %} {% endif %}submitted {{ moment(post.posted_at).fromNow() }} by {{ render_username(post.author) }} {% if post.edited_at %} edited {{ moment(post.edited_at).fromNow() }}{% endif %}

{% if post.type == POST_TYPE_LINK %}

{{ post.url|shorten_url }}

{% if 'youtube.com' in post.url %}
{% endif %} {% elif post.type == POST_TYPE_IMAGE %}
{{ post.image.alt_text }}
{% else %} {% if post.image_id and not (post.url and 'youtube.com' in post.url) %} {{ post.image.alt_text }} {% endif %} {% endif %}
{{ post.body_html|safe if post.body_html else '' }}
{% endif %}