{% if post.embed %} {{ post.embed }} {% else %}
{% for file in post.files %}
{% if file.file == 'deleted' %} {% else %}

File: {{ file.file }} ( {% if file.thumb == 'spoiler' %} {% trans %}Spoiler Image{% endtrans %}, {% endif %} {{ file.size|filesize }} {% if file.width and file.height %} , {{ file.width}}x{{ file.height }} {% if config.show_ratio %} , {{ ratio(file.width, file.height) }} {% endif %} {% endif %} {% if config.show_filename and file.filename %} , {% if file.filename|length > config.max_filename_display %} {{ file.filename|truncate(config.max_filename_display)|bidi_cleanup }} {% else %} {{ file.filename|e|bidi_cleanup }} {% endif %} {% endif %} {% include "post/image_identification.html" %} )

{% include "post/image.html" with {'post':file} %} {% endif %}
{% endfor %}
{% endif %}