{% 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 %B %Y") }}
{% endif %}
{% if post.draft %}
Draft
{% endif %}
{{ post.title }}
{% 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 %}
{{ (post.content_html or post.content or post.rendered_content or '') | safe }}
{% if post.author_name %}
{{ post.author_name[0]|upper }}
Scris de {{ post.author_name }}
Autor pe {{ site_display_name() }}
{{ post_article_footer_html | safe }}
{% endif %}