{# partials/pagination.html — reusable pagination component #} {% macro render_pagination(page, total_pages, total_items, per_page, next_cursor=None, has_next=false, pagination_mode="offset") %} {% if pagination_mode and "cursor" in pagination_mode %} {# Cursor-based pagination #} {% else %} {# Offset-based pagination (default) #} {% endif %} {% endmacro %}