In ruby I can do n.times do, is it possible to do this in Liquid markup?
My current loop is: for video in site.posts my goal is to run this loop 2 times. There are
You should be able to use a for loop with a range (n is the number of iterations):
n
{% for num in (1..n) %}
In some instances of Shopify Liquid, it may also work to use
{% for num in (1...n) %}