-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.development.html
41 lines (41 loc) · 1.37 KB
/
index.development.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
<!DOCTYPE html>
<html>
<head>
<base href="/">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no" />
<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/angular2/bundles/router.dev.js"></script>
<script src="node_modules/moment/moment.js"></script>
<script src="node_modules/rxjs/bundles/rx.js"></script>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Lato:400,900">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<title>(Development) KPI Exporter 2.0</title>
<style>
html, body {
width: 100%;
height: 100%;
background-color: #6f5499;
color: white;
}
</style>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
},
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
</head>
<body>
<app>Loading...</app>
</body>
</html>