{% if post.category and post.category.lower() not in ['none', 'null', 'uncategorized', ''] %}
{{ post.category }}
{% endif %}
{% if post.author_name %}
✍️ {{ post.author_name }}
{% endif %}
{% if post.published_at %}
• 📅 {{ post.published_at.strftime("%d.%m.%Y") }}
{% endif %}
{% if post.draft %}
Draft
{% endif %}
{% if post_header_meta_html %}{{ post_header_meta_html | safe }}{% endif %}
{{ post.title }}
{% if post.hero_image_url %}{{ plugin_area_article_header | safe }}
{% endif %}
{% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
{{ post.content_html | safe }}
{% if plugin_area_article_footer %}
{{ plugin_area_article_footer | safe }}
{% endif %}
{% if post_article_footer_html %}
{{ post_article_footer_html | safe }}
{% endif %}