{# brutalist post-metadata override — author/date/reading-time row from the `post` provider. Fields: showAuthor, showAvatar, showDate, showReadingTime, post.*, post.categories[]. #}
{% if post %}
{% if showAuthor and post.author_name %}{% if showAvatar and post.author_avatar %}{% img post.author_avatar alt=post.author_name class="h-7 w-7 object-cover" %}{% endif %}{{ post.author_name }}{% endif %}
{% if showDate and post.published_at %}{% endif %}
{% if showReadingTime and post.reading_time %}{{ post.reading_time }} min read{% endif %}
{% if post.categories %}{% for cat in post.categories %}{{ cat.name }}{% endfor %}{% endif %}