You are re-declaring the variable, instead of re-assigning it a value.
So instead of this
{{ $i := add $i 1 }}
Do this
{{ $i = add $i 1 }}
You are re-declaring the variable, instead of re-assigning it a value.
So instead of this
{{ $i := add $i 1 }}
Do this
{{ $i = add $i 1 }}