Meteor + Blaze – If else statement
Spacebars uses the same control flow structure as handlebars so the answer is the same as this one. In your case: {{#if en}} {{text.en}} {{else}} {{#if tc}} {{text.tc}} {{/if}} {{/if}} Side note – one of the nice things about jade is that it supports else if. Sometimes a better alternative is to move the logic … Read more