1
我無法找到液體/ jekyll是否可以處理while
循環的任何信息。所以要麼沒有人問這個問題,要麼Google沒有太大的幫助。這是不是可以做的事情?我本質上喜歡能夠做到這樣的事情:如何在液體/ jekyll中做一個while循環?
<!-- creates the 'counter' variable-->
{% assign counter = 0 %}
<!-- while 'counter' is less than 10, do some stuff -->
{% while counter < 10 %}
<!-- the stuff to be done followed by an increase in the 'counter' variable -->
{% assign counter = counter | plus: 1 %}
<!-- the completion of the loop -->
{% endwhile %}
固體。謝謝。 –