I\'m trying to make everything apart from the first element in an array have a CSS class using the Jade templating engine.
I was hoping I could do it like this, but no l
You can do this instead:
- each sense, i in entry.senses - var klass = (i === 0 ? 'span13' : 'span13 offset3') div(class=klass) ... a tonne of subsequent stuff