todomvc
Version:
> Helping you select an MV\* framework
17 lines (16 loc) • 519 B
HTML
<section id="main">
<input id="toggle-all" type="checkbox">
<label for="toggle-all">${markAll}</label>
<ul id="todo-list">
<!-- These are here just to show the structure of the list items -->
<!-- List items should get the class `editing` when editing and `completed` when marked as completed -->
<li>
<div class="view">
<input class="toggle" type="checkbox">
<label></label>
<button class="destroy"></button>
</div>
<form><input class="edit" name="text"></form>
</li>
</ul>
</section>