{% if post.type == POST_TYPE_IMAGE %}
{% include "community/_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 "community/_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 %}

{% if post.image_id %}
{{ post.image.alt_text }}
{% endif %}
{% endif %}
{% if post.body_html %}
{{ post.body_html|safe }}
{% endif %}