Skip to content

Instantly share code, notes, and snippets.

@Pent
Created June 15, 2013 16:48
Show Gist options
  • Select an option

  • Save Pent/5788709 to your computer and use it in GitHub Desktop.

Select an option

Save Pent/5788709 to your computer and use it in GitHub Desktop.
<template name="items">
<ul>
{{#each items}}
<li>
{{>itemlist}}
</li>
{{/if}}
</ul>
</template>
<template name="itemlist">
<ul>
{{#each itemlist}}
{{>item}}
{{/each}}
</ul>
</template>
<template name="item">
<li>{{name}} - {{color}}</li>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment