{% 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_utc.strftime("%d.%m.%Y") }}
{% endif %}
{% if post.draft %}
Draft
{% endif %}
{{ post.title }}
{% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
{% if post_header_meta_html %}
{{ post_header_meta_html | safe }}
{% endif %}
{% if plugin_area_article_header %}
{{ plugin_area_article_header | safe }}
{% endif %}
{% set hero_src = post.hero_image_url or post.image_url %}
{% if hero_src %}
{% endif %}
{{ post.content_html | safe }}
{% if post_article_footer_html %}
{{ post_article_footer_html | safe }}
{% endif %}