-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (39 loc) · 1.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="viewport" content="width = device-width, minimal-ui, initial-scale = 1, user-scalable = no" />
<meta name="apple-mobile-web-app-title" content="Angular-ES6-JSPM" />
<meta name="keywords" content="es6, jspm, gulp, babel, systemjs, angularjs, sass, travis-ci, heroku" />
<meta name="description" content="An experimental project in using ES6 with AngularJS." />
<meta name="author" content="Ye Huang, [email protected]" />
<title>Angular ES6 Demo</title>
<!-- /meta -->
<!-- app.css -->
<link rel="stylesheet" type="text/css" href=".tmp/app.css">
<!-- /app.css -->
</head>
<body>
<!-- header -->
<header></header>
<!-- /header -->
<!-- container -->
<div class="container">
<build-time></build-time>
<popup-window show="vm.modalShown"></popup-window>
</div>
<!-- /container -->
<!-- footer -->
<footer></footer>
<!-- /footer -->
<!-- app.js -->
<script src="jspm_packages/system.js"></script>
<script src="system.config.js"></script>
<script>System.import('app/js/app');</script>
<!-- /app.js -->
</body>
</html>