{% extends "base.html" %} {% from 'partials/content-components.html' import article_card %} {% from 'partials/navigation-components.html' import pagination %} {% block content %} {# Two-column layout similar to docs - tag navigation in sidebar #}
{# Left Sidebar: Tag Navigation #} {# Main Content #}
{# Action Bar: Breadcrumbs + Share #} {% include 'partials/action-bar.html' %}
{% if posts %}
{% 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 %}
{# Right Sidebar: Empty for now (will be hidden by CSS, can add tag metadata later) #}
{# styles moved to components/tags.css #} {% endblock %}