Skip to content

Instantly share code, notes, and snippets.

@marcodejongh
Created March 3, 2015 09:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcodejongh/b7265704304e34d6fd7a to your computer and use it in GitHub Desktop.
Save marcodejongh/b7265704304e34d6fd7a to your computer and use it in GitHub Desktop.
Context = {
name: 'pablo',
dogs: [
{
name: 'Fikkie'
},
{
name: 'Jantje'
}
],
traits: {
black: true,
white: false
}
}
{{#with traits}}
{{black}} {{white}}
{{/with}}
{{#each dogs}}
{{name}}
{{/each}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment