Store
{% get products from products.all limit:theme.featured_products order:theme.featured_order %}
{% if products != blank %}
{% for product in products %}
{% if forloop.first %}
{% else %}
-
{% endif %}
{% endfor %}
{% else %}
No products found.
{% endif %}
{% endget %}