for
tag runs its code against every value found in an array.forloop
object contains information about the loop currently being processed. Learn about its contents from Shopify.for
/endfor
block, the continue
tag instructs Liquid to skip the rest of the code in the current pass, and begin again with the next value in the array (if any).for
/endfor
block, the break
tag instructs Liquid to skip the rest of the code in the current pass, and to stop processing the array completely.