forked from yyhsong/iAngularJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 1.1 KB
/
index.html
File metadata and controls
28 lines (25 loc) · 1.1 KB
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 ng-app="voteApp">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title>AngularJS Demo Project</title>
<link rel="stylesheet" type="text/css" href="static/css/pure-0.6.min.css" />
<link rel="stylesheet" type="text/css" href="static/css/app.css" />
</head>
<body>
<header class="header">
<span class="header-title">NBA All-Star Voting</span>
</header>
<div class="container">
<div class="content" ng-view></div>
</div>
<script type="text/javascript" src="static/js/angular-1.5.8.js"></script>
<script type="text/javascript" src="static/js/angular-route.js"></script>
<script type="text/javascript" src="app/app.js"></script>
<script type="text/javascript" src="app/service/voteServices.js"></script>
<script type="text/javascript" src="app/filter/voteFilters.js"></script>
<script type="text/javascript" src="app/directive/voteDirectives.js"></script>
<script type="text/javascript" src="app/controller/voteControllers.js"></script>
</body>
</html>