-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
33 lines (27 loc) · 978 Bytes
/
list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<ons-page id="list">
<ons-toolbar>
<div class="left">
<ons-toolbar-button id="splitter-toggle">
<ons-icon icon="fa-bars"></ons-icon>
</ons-toolbar-button>
</div>
<div class="center">To-Do</div>
<div class="right">
<ons-toolbar-button id="add">
<ons-icon icon="fa-plus"></ons-icon>
</ons-toolbar-button>
</div>
</ons-toolbar>
<ons-list ide="todo-list"></ons-list>
<scrip id="todo-list-item" type="text/template">
<ons-list-item>
<label class="left">
<ons-input type="checkbox" {{checked}}></ons-input>
</label>
<div class="label" {{label}}></div>
<div class="right">
<ons-icon style="" icon="fa-trash-o"></ons-icon>
</div>
</ons-list-item>
</scrip>
</ons-page>