forked from treehouse/angular-basics
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (24 loc) · 789 Bytes
/
index.html
File metadata and controls
executable file
·28 lines (24 loc) · 789 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title></title>
<link href='https://fonts.googleapis.com/css?family=Varela+Round' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/styles/main.css" type="text/css">
</head>
<body ng-app="todoListApp">
<h1>My TODOs!</h1>
<div class="list" ng-controller="mainCtrl">
<div class="add">
<a href="#" ng-click="addTodo()">
+ Add a New Task</a>
</div>
<todo></todo>
</div>
<script src="/vendor/angular.js"></script>
<script src="/scripts/app.js"></script>
<script src="/scripts/controllers/main.js"></script>
<script src="/scripts/controllers/todo.js"></script>
<script src="/scripts/services/data.js"></script>
<script src="/scripts/directives/todo.js"></script>
</body>
</html>