Skip to content

Instantly share code, notes, and snippets.

@swannodette
Created September 27, 2011 19:45
Show Gist options
  • Save swannodette/1246024 to your computer and use it in GitHub Desktop.
Save swannodette/1246024 to your computer and use it in GitHub Desktop.
named_subtemplates.hb
<!--
I'm sure there's a better syntax for naming subtemplates
-->
<h3>This is a list</h3>
<ul>
{{#each items}}
{{@cell}}
<li>
{{..}}
</li>
{{/cell}}
{{/each}}
</ul>
<!--
var template = Handlebars.compile(...);
.
.
.
template(items);
template.cell(item);
-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment