{# noir override — post-metadata; preserves post.author_name/author_avatar/published_at/reading_time/categories, showAuthor/showAvatar/showDate/showReadingTime, {% img %}. #} {% 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 rounded-full object-cover grayscale" %}{% 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 %}
{% endif %}