-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (33 loc) · 1.07 KB
/
index.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
34
35
36
37
38
<!DOCTYPE html>
<html ng-app="app">
<head>
<title>Your tasks</title>
<meta charset="utf-8" />
<!-- Bootstrap - Latest compiled and minified JavaScript -->
<!-- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> -->
<script src="node_modules/angular/angular.js"></script>
<script src="task-list/task-list.js"></script>
<script src="app.js"></script>
<!-- Bootstrap - Latest compiled and minified CSS -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<section ng-controller="SummaryController">
<h1>
Summary
</h1>
<p>
You have <strong>{{uncompletedTasksCount}} tasks </strong>left to complete.
</p>
</section>
<h1>
The first task list
</h1>
<task-list></task-list>
<h1>
The second task list
</h1>
<task-list></task-list>
</body>
</html>