{% 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.nsfw %}nsfw{% endif %} {% if post.nsfl %}nsfl{% endif %}

{% if post.url %}

{{ post.url|shorten_url }}

{% endif %}

{% if post.reports > 0 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 if post.image.alt_text else post.title }} {% else %} {{ post.image.alt_text if post.image.alt_text else post.title }} {% endif %} {% else %} {% endif %}
{{ post.body_html|community_links|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.nsfw %}nsfw{% endif %} {% if post.nsfl %}nsfl{% 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 if post.image.alt_text else '' }}
{% endif %}

{% if post.reports > 0 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 post.url.endswith('.mp3') %}

{% endif %} {% if 'youtube.com' in post.url %}

{{ _('Watch on piped.video') }}

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