-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (22 loc) · 777 Bytes
/
index.html
File metadata and controls
34 lines (22 loc) · 777 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
29
30
31
32
33
34
<!DOCTYPE html>
<html ng-app="myApp">
<head>
</head>
<body>
<div ui-view="main" id="main">
<div id="menu-view" ui-view="menu">
</div>
<div ui-view id="content-body">
<div ui-view="input"></div>
<div ui-view="upgrade"></div>
</div>
</div>
<script src="bower_components/angular/angular.min.js"></script>
<script src="http://www.parsecdn.com/js/parse-1.2.12.min.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.min.js"></script>
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/pure-min.css">
<script src="common/app.js"></script>
<script src="app/input/input.js"></script>
<script src="app/upgrade/upgrade.js"></script>
</body>
</html>