Sightly Conditional html
Is it possible to have a slightly conditional "row"?
Example
<div data-sly-test="${groupItemsList.even}" data-sly-unwrap>
<div class="row">
<div class="even">${groupItemsList.index}</div>
</div>
<div data-sly-test="${groupItemsList.odd}" data-sly-unwrap>
<div class="odd">${groupItemsList.index}</div>
</div>
</div>
BTW: the above code does not work ....
Thank you in advance.
-Dean