-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.22 KB
/
index.html
File metadata and controls
43 lines (36 loc) · 1.22 KB
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
37
38
39
40
41
42
43
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Angular2 Typescript Starter</title>
<link rel="stylesheet" href="dist/styles.css" />
</head>
<body>
<app>Loading...</app>
</body>
<!-- ES6-related imports -->
<script src="/node_modules/systemjs/dist/system.js"></script>
<script>
System.config({defaultJSExtensions: true});
</script>
<!-- Polymer -->
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<script>
var Polymer = Polymer || {};
Polymer.dom = 'shadow';
</script>
<link rel="import" href="bower_components/iron-icons/iron-icons.html">
<link rel="import" href="bower_components/paper-toolbar/paper-toolbar.html">
<link rel="import" href="bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="bower_components/paper-button/paper-button.html">
<link rel="import" href="bower_components/paper-input/paper-input.html">
<link rel="import" href="bower_components/paper-card/paper-card.html">
<!-- Angular2 imports -->
<script src="/node_modules/angular2/bundles/angular2.dev.js"></script>
<script>
//bootstrap the Angular2 application
System.import('dist/app').catch(
console.log.bind(console)
);
</script>
</html>