I'm using Ghost as my website base which in turn uses handlebars. I purchased a template to expedite my roll out and am now trying to customize a few items.
So the home page is a masonry style layout of blog entries. The page is built with a {{#foreach posts}}
loop.
What I want to do is evaluate the @index
(I assume that it is available in the foreach just like the each loop) so, something like this.
{{#foreach posts}}
if @index = 0
DO SOMETHING
elseif @index = 1
DO SOMETHING
.
.
so on
{{/foreach}}
Or better yet a select case would be best. The current lay out is 6 items per page and my goal is to set specific css groups on 0 & 3, 1 & 4, and 2 & 5.
Thank you, Ty
So, you cannot do comparisons in handlebars. I figured out how to do it through javascript.