-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (52 loc) · 2.07 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
<html>
<head>
<title>APx Music</title>
<link href="built/app/img/logo/logosmall-transparent.png" rel="icon">
<base href="/"/>
<link href="built/app/img/ripple.css" rel="stylesheet">
<!-- 1. Load libraries -->
<!-- IE required polyfills, in this exact order -->
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootstrap-social/bootstrap-social.css">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<base href="/">
</head>
<!-- 3. Display the application -->
<body>
<my-app>
<div style="font-size: 100pt;
width:100%;
height:100%;
color:white;
background-color:#662d91;
text-align:center;
position:absolute;
top:0;
font-size:xx-large">
<div style="margin-top: 30vh">
<img src="app/img/logo/logo.svg"><br /><br />
<img [hidden]="false" src="app/img/ripple.svg">
<noscript><h1>You must enable JavaScript to use this site</h1></noscript>
</div>
</div>
</my-app>
</body>
<!-- Start Javascript(s) -->
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/tone/build/Tone.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="node_modules/ng2-bootstrap/bundles/ng2-bootstrap.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function (err) {
console.error(err);
});
</script>
<!-- End Javascript -->
</html>