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

{{ post.title }}

{% if post.url %}

{{ post.url|shorten_url }} External link

{% endif %}

submitted {{ moment(post.posted_at).fromNow() }} by {{ render_username(post.author) }} {% if post.edited_at %} edited {{ moment(post.edited_at).fromNow() }}{% endif %}

{{ post.image.alt_text }}
{% else %}
{% include "post/_post_voting_buttons.html" %}
{% 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 %}

{{ post.title }}

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 }} External link

{% 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 %}
{% endif %}
{% if post.body_html %}
{{ post.body_html|safe }}
{% endif %}