{% paginate products from products.all by theme.featured_limit order:theme.featured_order %}
{% if products != blank %}
{% for product in products %}
{% endfor %}
{{ paginate | default_pagination }}{% else %}
No products found.
{% endif %}
{% endpaginate %}