{# featured-posts (y2k override) — grid of cards from the `posts` provider #} {# (params: limit, featured=true). Neon HUD card: image, title, excerpt, meta. #}
{% if heading %}

{{ heading }}

{% endif %}
{% for post in posts %}
{% if showFeaturedImage and post.featured_image_url %}{% img post.featured_image_url alt=post.title class="h-full w-full object-cover transition-transform duration-300 group-hover:scale-105" %}{% endif %}

{{ post.title }}

{% if showExcerpt and post.excerpt %}

{{ post.excerpt }}

{% endif %}
{% if showAuthor and post.author_name %}{{ post.author_name }}{% endif %} {% if showDate and post.published_at %}{{ post.published_at|date:"M j, Y" }}{% endif %} {% if post.reading_time %}{{ post.reading_time }} min read{% endif %}
{% endfor %}