{{ tag }}
{{ total_posts }} post{% if total_posts != 1 %}s{% endif %} tagged with "{{ tag }}"
{% for post in posts %}
{# Defensive: Skip autodoc pages (they shouldn't have tags, but just in case) #}
{% set source_str = post.source_path | string %}
{% if 'content/api' not in source_str and 'content/cli' not in source_str %}
{{ article_card(post, show_excerpt=True) }}
{% endif %}
{% endfor %}
{# Pagination (if needed in future) #}
{% if total_pages and total_pages > 1 %}
{{ pagination(current_page, total_pages, base_url) }}
{% endif %}
{% else %}
No posts found with this tag.
{% endif %}