When I range over a slice with {{range}} I can instantiate many elements each with data pipeline. But I cannot see how to find the index of each element in the range. With go we can:
for i, _ := range x {}
can we do something similar with templates?