Can we use % (modulo) in Sightly
Can we use %(modulo) in Sightly
I want to use below condition in sightly, how can I use it
<ul data-sly-list="${properties.size}">
<li data-sly-test="${itemList.count % 3 ==0}"> Test </li>
</ul>
I know above code don't work. How to achieve above condition in sightly.