I am trying to find a way to parse out differently depending array index as odd or even number
I was looking at this http://assemble.io/helpers/helpers-comparison.html and hope to find something like this:
{{#each array}}
{{#if_odd {{@index}}}}
{{this}} is odd
{{else}}
{{this}} is even
{{/if_odd}}
{{/each}}
I don't really care about the syntax but hope my idea comes across. Any help? Thanks.