-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
36 lines (29 loc) · 1.11 KB
/
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>
<head>
<meta charset="UTF-8">
<meta name="description" content="Angular Resources">
<title>Angular 2 Travels</title>
<link rel="stylesheet" href="css/pure-min.css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<travel-app></travel-app>
<!-- ES6-related imports -->
<script src="/node_modules/es6-shim/es6-shim.min.js"></script>
<script src="/node_modules/systemjs/dist/system-csp-production.js"></script>
<script>
//configure system loader
System.config({defaultJSExtensions: true});
</script>
<script src="/node_modules/angular2/bundles/angular2.min.js"></script>
<script src="/node_modules/angular2/bundles/http.min.js"></script>
<script src="/node_modules/angular2/bundles/router.dev.min.js"></script>
<script>
//bootstrap the Angular2 application
System.import('dist/travel-app').catch(console.log.bind(console));
</script>
</body>
</html>