forked from davidtran/angular2-soundcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.33 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
<html>
<head>
<title>Angular 2 Music</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
<style>
*:focus {
outline: 0;
}
html{
overflow: hidden;
max-height: 800px;
}
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
overflow: hidden;
max-height: 600px;
color: #363636;
}
</style>
<script src="node_modules/es6-shim/es6-shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/angular2/bundles/http.dev.js"></script>
<script src="node_modules/typescript/lib/typescript.js"></script>
<script src="node_modules/soundmanager2/script/soundmanager2.js"></script>
<script>
var soundCloudClientId = '8e1349e63dfd43dc67a63e0de3befc68';
System.config({
transpiler: 'typescript',
typescriptOptions: { emitDecoratorMetadata: true }
});
System.import('src/app.ts');
</script>
</head>
<body>
<app>Loading</app>
</body>
</html>