{% extends "content" ~ DIR ~ "post.twig" %} {% block content %} {% if post.title is not empty %}

{{ post.title }}

{{ "Written by %s" | translate | format(post.author.name) }}

{% endif %} {% if post.caption is not empty %}
{{ post.caption }}
{% endif %} {% for file in post.files %} {% if ["jpg", "jpeg", "png", "gif", "webp", "avif"] | contains(file.type) %}
{{ file.name | thumbnail(file.name, post.source, ["max_width=960", "max_height=960", "quality=80"], "(max-width: 959px) 95vw, 75vw") }}
{% else %}

{{ "File attachment:" | translate }}

{{ file.name | fix | truncate(40) }} ({{ file.size | filesizeformat }})
{% endif %} {% endfor %} {% endblock %}