-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
executable file
·49 lines (39 loc) · 1.8 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
<!DOCTYPE html>
<html ng-app="demoApp">
<head>
<meta charset="UTF-8">
<title>Platform API Browse Demo</title>
<base href="/">
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body ng-controller="MainCtrl">
<div ng-include="'partials/header.html'" onload="onHeaderLoaded()"></div>
<div class="container" ng-show="canShowWaitingIMS()">
<div class="loader" id="imsLoading">
<div class="glyph"><img src="images/loader/01.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/02.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/03.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/04.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/05.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/06.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/07.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/08.svg" alt="&" /></div>
<div class="glyph"><img src="images/loader/09.svg" alt="&" /></div>
</div>
</div>
<ng-view />
<script src="https://use.typekit.net/previewkits/pk-v1.js"></script>
<script src="https://cdn-creativesdk.adobe.io/v1/csdk.js"></script>
<script src="bundle.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-80041304-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>