-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.08 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.08 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
<!DOCTYPE html>
<html ng-app="@@appModule" ng-controller="AppCtrl as application">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
<!-- OrderCloud will appear as the tab's title until Angular loads application.title's value -->
<title ng-bind="application.$state.current.data.pageTitle + (application.$state.current.data.pageTitle ? ' | ' : '') + application.name()">OrderCloud</title>
<base href="/">
<!-- bower:css -->
<!-- endinject -->
<!-- inject:css -->
<!-- endinject -->
@@conditionalStylesRef
<link rel="icon" type="image/ico" href="assets/images/favicon.png"/>
</head>
<body>
<ui-view>
<div class="indicator-container">
<div class="indicator">
<div class="animation">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
</div>
</div>
</ui-view>
<!-- bower:js -->
<!-- endinject -->
<!-- inject:js -->
<!-- endinject -->
</body>
</html>