-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 2.22 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
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html class="no-js" lang="en" dir="ltr">
<head>
<base href="/">
<title>Angular 2 Template</title>
<meta charset="UTF-8">
<meta http-equiv="cleartype" content="on">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="">
<meta name="apple-mobile-web-app-title" content="Angular 2 Template">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="shortcut icon" href="./assets/favicon.ico">
<link rel="apple-touch-icon" href="./assets/images/apple-touch-icon-precomposed.png">
<link rel="apple-touch-icon" href="./assets/images/apple-touch-icon-57x57-precomposed.png" sizes="57x57">
<link rel="apple-touch-icon" href="./assets/images/apple-touch-icon-72x72-precomposed.png" sizes="72x72">
<link rel="apple-touch-icon" href="./assets/images/apple-touch-icon-114x114-precomposed.png" sizes="114x114">
<link rel="apple-touch-icon" href="./assets/images/apple-touch-icon-144x144-precomposed.png" sizes="144x144">
<meta name="msapplication-TileImage" content="./assets/images/apple-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#FFFFFF">
<link rel="stylesheet" href="./css/style.css">
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</head>
<!-- 3. Display the application -->
<body>
<my-app>Loading...</my-app>
</body>
</html>