Skip to content

Instantly share code, notes, and snippets.

@AaronNGray
Created September 12, 2014 23:33
Show Gist options
  • Save AaronNGray/05f85e04b4a3731a3d9e to your computer and use it in GitHub Desktop.
Save AaronNGray/05f85e04b4a3731a3d9e to your computer and use it in GitHub Desktop.
var templateFn = _.template($('#navigation_template').html());
$(this.el).html(templateFn({model: this.model, templateFn: templateFn}));
<script id="navigation_template" type="text/template">
<div>
<%= model.escape('title') %>
<% _.each(model.children, function(child) { %>
<%= templateFn(child, templateFn) %>
<% }); %>
</div>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment