Skip to content

Instantly share code, notes, and snippets.

@bojicas
Created July 18, 2014 23:43
Show Gist options
  • Select an option

  • Save bojicas/88007be7a9f2d74d901e to your computer and use it in GitHub Desktop.

Select an option

Save bojicas/88007be7a9f2d74d901e to your computer and use it in GitHub Desktop.
app/templates/todos.hbs (todo-ember)
<!-- ... -->
<ul id="todo-list">
{{#each}}
<li>
<input type="checkbox" class="toggle">
<label>{{title}}</label><button class="destroy"></button>
</li>
{{/each}}
</ul>
<!-- ... -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment