{% set thumb_url = post.hero_image_url or post.image_url %}
{% if thumb_url %}
{% endif %}
{% if post.category %}
{{ post.category }}
{% endif %}
{% if post.author_name %}
✍️ {{ t_safe(translations, 'blog.author', 'Autor') }}: {{ post.author_name }}
{% endif %}
{% if post.published_at %}
📅 {{ post.published_at.strftime("%d.%m.%Y") }}
{% endif %}
{% if post.draft %}
Draft
{% endif %}
{{ post.title }}
{% if post.excerpt %}{{ post.excerpt }}
{% endif %}