-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (25 loc) · 987 Bytes
/
index.html
File metadata and controls
30 lines (25 loc) · 987 Bytes
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
<!doctype html>
<html>
<head>
<title>Angular 2 Example</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<!-- 1. Load libraries -->
<script src="js/libs/zone.js/zone.js"></script>
<script src="js/libs/reflect-metadata/Reflect.js"></script>
<script src="js/libs/rxjs/Rx.js"></script>
<script src="js/libs/@angular/core.umd.js"></script>
<script src="js/libs/@angular/common.umd.js"></script>
<script src="js/libs/@angular/compiler.umd.js"></script>
<script src="js/libs/@angular/platform-browser.umd.js"></script>
<script src="js/libs/@angular/platform-browser-dynamic.umd.js"></script>
<!-- 2. Load our 'modules' -->
<script src='js/app.component.js'></script>
<script src='js/app.module.js'></script>
<script src='js/app.js'></script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>