我正在尝试实现在对集合进行迭代完成后关闭循环标记。
<div class="row products">
{% for product in collection.products limit: settings.pagination_limit %}
{% cycle '<div class="row">', '', '', '' %}
{% include 'product-loop' with collection.handle %}
{% cycle '', '', '', '</div>' %}
{% endfor %}
</div>
我知道使用自行车组,但我不知道如何在这里使用它。 迭代一个集合后,应该使用一个新的循环组。
我尝试使用不起作用的东西:
{% cycle [collection.handle]: '<div class="row">', '', '', '' %}
你有什么想法吗?
答案 0 :(得分:0)
它应该没有方括号。试试这个:
{% cycle collection.handle: '<div class="row">', '', '', '' %}