-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·65 lines (56 loc) · 2.69 KB
/
Copy pathindex.html
File metadata and controls
executable file
·65 lines (56 loc) · 2.69 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html ng-app="gatm">
<head>
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="app.less" type="text/css" rel="stylesheet/less">
</head>
<body ng-controller="ApplicationController">
<!-- Livereload script for development only (stripped during dist build) -->
<script src="http://localhost:35729/livereload.js" data-concat="false"></script>
<!-- JS from Bower Components -->
<script src="bower_components/less.js/dist/less-1.6.2.js" data-concat="false"></script>
<script src="bower_components/jquery/jquery.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="bower_components/moment/moment.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-local-storage/dist/angular-local-storage.js"></script>
<script src="bower_components/angular-flash/dist/angular-flash.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-resource/angular-resource.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="bower_components/angular-ui-utils/ui-utils.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<!-- Add New Bower Component JS Above -->
<!-- Main App JS -->
<script src="app.js"></script>
<script src="security/security.js"></script>
<script src="login/login.js"></script>
<script src="login/partial/login.js"></script>
<script src="signup/signup.js"></script>
<script src="signup/partial/signup.js"></script>
<script src="security/service/AuthService.js"></script>
<script src="security/service/SessionService.js"></script>
<script src="dashboard/dashboard.js"></script>
<script src="dashboard/partial/header/header.js"></script>
<script src="dashboard/partial/footer/footer.js"></script>
<script src="dashboard/partial/dashboard/dashboard.js"></script>
<script src="directives/showErrors.js"></script>
<script src="security/service/AuthInterceptor.js"></script>
<script src="signup/service/Signup.js"></script>
<!-- Add New Component JS Above -->
<!--<div id="content" class="container" ui-view></div>-->
<div ui-view="header"></div>
<div>
<div id="content" class="container">
<div class="row">
<div ui-view="body" autoscroll="true"></div>
</div>
</div>
</div>
<div ui-view="footer"></div>
</body>
</html>