Skip to content

Commit fb490dd

Browse files
authored
Merge pull request #7 from eaglejs/create-index-file
#4 Create index file
2 parents 5dab7a6 + 716b05f commit fb490dd

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

app/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>Angular 2 Example</title>
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<link rel="stylesheet" href="styles.css">
7+
8+
<!-- 1. Load libraries -->
9+
<!-- IE required polyfill -->
10+
<script src="node_modules/core-js/client/shim.min.js"></script>
11+
12+
<script src="node_modules/zone.js/dist/zone.js"></script>
13+
<script src="node_modules/reflect-metadata/Reflect.js"></script>
14+
15+
<script src="node_modules/rxjs/bundles/Rx.js"></script>
16+
<script src="node_modules/@angular/core/bundles/core.umd.js"></script>
17+
<script src="node_modules/@angular/common/bundles/common.umd.js"></script>
18+
<script src="node_modules/@angular/compiler/bundles/compiler.umd.js"></script>
19+
<script src="node_modules/@angular/platform-browser/bundles/platform-browser.umd.js"></script>
20+
<script src="node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js"></script>
21+
22+
<!-- 2. Load our 'modules' -->
23+
<script src='app/app.component.js'></script>
24+
<script src='app/app.module.js'></script>
25+
<script src='app/main.js'></script>
26+
</head>
27+
28+
<!-- 3. Display the application -->
29+
<body>
30+
<my-app>Loading...</my-app>
31+
</body>
32+
33+
</html>

0 commit comments

Comments
 (0)