2016-09-17 74 views
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 %} 

回答

4

沒有while循環在Liquid中。

你可以使用一個像這樣循環爲您的要求

{% for counter in (0..9) %} 
    <!-- the stuff to be done followed by an increase in the 'counter' variable --> 
    {{ counter }} 
{% endfor %} 
+0

固體。謝謝。 –