Skip to content

Instantly share code, notes, and snippets.

@olivier-schmitt
Created March 8, 2013 17:54
Show Gist options
  • Save olivier-schmitt/5118406 to your computer and use it in GitHub Desktop.
Save olivier-schmitt/5118406 to your computer and use it in GitHub Desktop.
Underscore.js template using new syntax
<script type="text/template" id="item-template">
<div class="view">
<input class="toggle" type="checkbox" {{ done ? 'checked="checked"' : '' }} />
<label>{{ title }}</label>
<a class="destroy"></a>
</div>
<input class="edit" type="text" value="{{ title }}" />
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment