{% for post in posts %}
{% include card_template or feed.config.card_template or config.feeds.card_template %}
{% endfor %}
{% if pagination_enabled %}
{# Manual pagination controls - shown for all types as fallback #}
{% include "pagination_controls.html" %}
{% if pagination_context.pagination_type == 'htmx' %}
{% if has_next %}
{% endif %}
{% endif %}
{% if pagination_context.pagination_type == 'js' %}
{% endif %}
{% endif %}