-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 905 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html ng-app="routine">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Exam routine with angular JS</title>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular-resource.min.js"></script>
<script src="js/controller.js"></script>
<script src="js/model.js"></script>
<script src="js/routine.js"></script>
<script src="js/services.js"></script>
</head>
<body ng-controller="RouteController">
<h3>{{title}}</h3>
<ul>
<li><a ng-click="setRoute('home')">Home</a></li>
<li><a ng-click="setRoute('about')">about</a></li>
<li><a ng-click="addRoutine()">Add</a></li>
</ul>
<div ng-view></div>
</body>
</html>