Breadcrumbs for Schema.org

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 }}
3 Likes