I can\'t for the life of me figure out how to add a For instance:
The proper way of doing this is using the batch filter. It is new in 1.12.3. Ref: http://twig.sensiolabs.org/doc/filters/batch.html every OTHER iteration in a Twig loop.
$numArray = a
{% for row in numArray|batch(2) %}
{% for column in row %}
{% endfor %}
{{ column }}
{% endfor %}