【发布时间】:2018-05-23 18:06:11
【问题描述】:
{% block page %}
<ul class="gallery">
{% set foo = 0 %}
{% for products in prodArr %}
{% if foo % 4 == 0 %}
<ul class="slides">
<li>Product</li>
</ul>
{% else %}
<li>Another Product<li> // this
{% endif %}
{% set foo = foo + 1 %}
{% endfor %}
</ul>
{% endblock %}
在其他情况下,我希望 li 将附加到 ul 与类幻灯片。这可能吗?
我希望我的 HTML 看起来像这样:
<ul class="gallery">
<ul class="slides">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<ul class="slides">
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</ul>
【问题讨论】:
标签: php html twig template-engine