-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
36 lines (32 loc) · 1003 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<base href="/">
<meta charset="UTF-8">
<title>Angular2 Minimum Starter Kit</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<style>
body {
padding-top: 70px;
}
</style>
<script src="../node_modules/reflect-metadata/Reflect.js"></script>
<script src="../node_modules/zone.js/dist/zone.js"></script>
<script src="../node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="../node_modules/rxjs/bundles/Rx.js"></script>
<script>
System.import('app/system-config.js').then(function () {
System.import('app/main');
}).catch(function (err) {
console.log('error while importing:');
console.log(err);
console.log(err.stack);
});
</script>
</head>
<body>
<my-app>Loading...</my-app>
</body>
</html>