In Handlebars, say i have a collection of names how can i do
names
{{#each names}} {{position}} {{name}} {{/each}}
where {{position}} is
you can get value just from index inside the list.
{{#each list}} @index {{/each}}
only you have to use {{@index}}
example:
{{#.}} <li class="order{{@index}}"> counter: {{@index}}</li> {{/.}}