How can I add a new row after 3 items in a repeat loop? The repeat loop is:
<div class="row">
{.repeated section items}
<div class="col-lg-4 col-md-4 col-sm-6 col-xs-12 gallery-item">
{.image?}<img class="img-responsive loading" {@|image-meta} />{.end}
</div>
{.equal? @index 3}
</div><div class="row separator">
{.end}
{.end}
</div>
I can add a row after the first three items, but I want to add this after each third element
{.equal? @index 3}
</div><div class="row separator">
{.end}
Edit: I don't find any information from this in the docs.