-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (37 loc) · 1.16 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
45
46
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,user-scalable=no,initial-scale=1,maximum-scale=1">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Kittens, kittens, kittens. ngx-tabby is a gentle angular(2+) easter egg that will leave you warm and cozy on the inside.">
<meta name="keywords" content="kittens, felines, cats, angular 2, typescript, easter egg">
<meta name="author" content="D.L.Smith">
<title>ngx-tabby</title>
<style>
div {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
h1 {
color: #666;
}
</style>
</head>
<body>
<div>
<h1>Press TAB + b</h1>
</div>
<!-- System setup -->
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('app').catch(function (err) { console.error(err); }).then(function (app) {
var tabbyService = new app.TabbyService();
tabbyService.init();
});
</script>
</body>
</html>