shopify for loop code example
Example 1: liquid for loop
{% for product in collection.products %}
{{ product.title }}
{% endfor %}
Example 2: Shopify Liquid for loop
//Shopify Liquid
{% for product in collections.frontpage.products %}
{{ forloop.index }}
{% else %}
// no products in your frontpage collection
{% endfor %}