Created
March 3, 2015 09:43
-
-
Save marcodejongh/b7265704304e34d6fd7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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