forked from kapke/angular2-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
20 lines (20 loc) · 757 Bytes
/
index.html
File metadata and controls
20 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!-- index.html -->
<html>
<head>
<title>Angular 2 Quickstart</title>
<link rel="stylesheet" href="built/app/style/style.css" />
<script src="node_modules/systemjs/dist/system-polyfills.js" defer></script>
<script src="node_modules/systemjs/dist/system.js" defer></script>
<script src="config.js" defer></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js" defer></script>
<script src="node_modules/angular2/bundles/angular2.dev.js" defer></script>
</head>
<body>
<my-app></my-app>
<script>
window.addEventListener('load', function () {
System.import('built/app/app');
});
</script>
</body>
</html>