forked from AngularClass/angular-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 824 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
<!DOCTYPE html>
<html lang="">
<head>
<title>Angular 2 Examples by @gdi2990 from @AngularClass</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Angular2 Webpack Starter by @gdi2990 from @AngularClass">
<link rel="icon" href="data:;base64,iVBORw0KGgo=">
<!-- base url -->
<base href="/">
<!--
Angular 2
ES6 browser shim
-->
<script src="/lib/es6-shim.js"></script>
</head>
<body>
<app>
Loading...
</app>
<!-- Common files to be cached -->
<script src="/__build__/common.js"></script>
<!-- Angular2 files -->
<script src="/__build__/angular2.js"></script>
<!-- App script -->
<script src="/__build__/app.js"></script>
</body>
</html>