Sha256: c25d88bb68f56736f0f350defc2fc676efd76de1d8862dc7420b78593a2fc00c
Contents?: true
Size: 721 Bytes
Versions: 9
Compression:
Stored size: 721 Bytes
Contents
<h1>Todos</h1> {{#view "Todos.CreateTodoView"}} <input id="new-todo" type="text" placeholder="Wot?" > {{/view}} {{#view "Todos.statsView"}} <div class="remaining"> {{#view "Todos.clearCompletedView"}} <button>Clear Completed Todos</button> {{/view}} {{bind "displayRemaining"}} remaining. </div> {{/view}} {{#view "Todos.markAllDoneView"}} <label class='done-label'> <input class="mark-all-done" type="checkbox"> Mark All as Done </label> {{/view}} {{#collection "Todos.todoListView"}} <label class='done'> {{#view "Todos.CheckboxView"}} <input class="check" type="checkbox"> {{/view}} <div class="todo-content">{{content/title}}</div> </label> {{/collection}}
Version data entries
9 entries across 9 versions & 1 rubygems