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
This works too:
div(class="#{i===0 ? 'span13' : 'span13 offset3'}")