modulo in Twig
Ever wondered how to use the modulo operator in twig, the template engine of symfony?
Actually its like in PHP:
{{ 11 % 7 }}
As described here
But i guess for most use cases modulus is used to check if a number is divisible by another number.
Therefore Twig has the very conveniant divisibleby test function.
{% if loop.index is divisibleby(3) %}
Another modulo use case is to check odd and even rows in loops. There Twig has the built-in function cycle to help you.
{{ cycle(['odd', 'even'], i) }}
Once you know its so eeasy;)
[...] modulo in Twig [...]