{% extends "base.html" %} {% from 'partials/content-components.html' import article_card %} {% from 'partials/navigation-components.html' import pagination %} {% block content %}
{% if posts %}
{% for post in posts %} {{ article_card(post, show_excerpt=True) }} {% 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 %}
← View all tags
{% endblock %}