{# noir override — popular-posts; preserves posts provider loop, heading, showRank/showThumbnail, forloop.Counter, post.featured_image_url/.url/.title/.published_at. {% img %} kept verbatim. #}
{% if heading %}

{{ heading }}

{% endif %}
    {% for post in posts %}
  1. {% if showRank %}{{ forloop.Counter }}{% endif %} {% if showThumbnail and post.featured_image_url %}{% img post.featured_image_url alt=post.title class="h-full w-full object-cover" %}{% endif %}

    {{ post.title }}

    {% if post.published_at %}

    {{ post.published_at|date:"M j, Y" }}

    {% endif %}
  2. {% endfor %}