-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (53 loc) · 2.14 KB
/
index.html
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
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title></title>
<!-- compiled css output -->
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/angular_material/1.0.0/angular-material.min.css">
<link href="content/css/ionic.app.css" rel="stylesheet">
</head>
<body ng-app="app">
<ion-nav-view></ion-nav-view>
</body>
<!-- ionic/angularjs js -->
<script src="content/lib/ionic/js/ionic.bundle.js"></script>
<script src="content/lib/angular-crypto/angular-crypto.min.js"></script>
<!-- Angular Material Library -->
<!-- cordova script (this will be a 404 during development) -->
<script src="cordova.js"></script>
<!-- Core Modules for Modules that can be re-used -->
<script src="core/core.module.js"></script>
<script src="core/core.constants.js"></script>
<script src="core/core.config.js"></script>
<script src="core/core.route.js"></script>
<!-- Run Module to execute on App Startup -->
<script src="run/run.module.js"></script>
<script src="run/run.run.js"></script>
<!-- Layout Module -->
<script src="layout/layout.module.js"></script>
<script src="layout/layout.config.js"></script>
<script src="layout/layout.route.js"></script>
<script src="layout/layout.controller.js"></script>
<!-- Re-usable Blocks -->
<!-- App Load Module -->
<script src="appload/appload.module.js"></script>
<script src="appload/appload.config.js"></script>
<script src="appload/appload.route.js"></script>
<script src="appload/appload.controller.js"></script>
<!-- Login Module -->
<script src="login/login.module.js"></script>
<script src="login/login.constants.js"></script>
<script src="login/login.route.js"></script>
<script src="login/login.controller.js"></script>
<!-- Dashboard Module -->
<script src="dashboard/dashboard.module.js"></script>
<script src="dashboard/dashboard.config.js"></script>
<script src="dashboard/dashboard.route.js"></script>
<script src="dashboard/dashboard.controller.js"></script>
<!-- Models -->
<script src="common/models/models.module.js"></script>
<!-- Modules -->
<script src="app.modules.js"></script>
</html>