Skip to content

Commit 05a9b7f

Browse files
author
Phil Strong
committed
4 lists
1 parent 8e232ca commit 05a9b7f

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

app/index.html

+16
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,22 @@ <h3>{{todo.title}}</h3>
2929
<div>{{timeSince(todo.due)}}</div>
3030
</li>
3131
</ul>
32+
33+
<h2 class="hdr today">Soon</h2>
34+
<ul>
35+
<li ng-repeat="todo in soon()">
36+
<h3>{{todo.title}}</h3>
37+
<div>{{timeSince(todo.due)}}</div>
38+
</li>
39+
</ul>
40+
41+
<h2 class="hdr today">Someday</h2>
42+
<ul>
43+
<li ng-repeat="todo in someday()">
44+
<h3>{{todo.title}}</h3>
45+
<div>{{timeSince(todo.due)}}</div>
46+
</li>
47+
</ul>
3248
</div>
3349

3450

0 commit comments

Comments
 (0)