Skip to content

Instantly share code, notes, and snippets.

@jhubert
Created July 10, 2012 17:28
Show Gist options
  • Save jhubert/3084891 to your computer and use it in GitHub Desktop.
Save jhubert/3084891 to your computer and use it in GitHub Desktop.
Mustache vs Handlebars
data = { people: [{ name: 'jeremy' }], notTrue: false, label: 'People' }
{{#if label}}<h1>{{label}}</h1>{{/if}}
<ul>
{{#each people}}<li>{{name}}</li>{{/each}}
</ul>
{{#unless notTrue}}Yes, it's not true{{/unless}}
{{#label}}<h1>{{label}}</h1>{{/label}}
<ul>
{{#people}}<li>{{name}}</li>{{/people}}
</ul>
{{^notTrue}}Yes, it's not true{{/notTrue}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment