-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
86 lines (73 loc) · 2.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!--
// Copyright (C) 2016 Sergey Akopkokhyants
// This project is licensed under the terms of the MIT license.
// https://github.com/akserg/ng2-demo
-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Angular2 playground</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7"
crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="node_modules/ng2-toasty/style.css">
<link rel="stylesheet" type="text/css" href="node_modules/ng2-dnd/style.css">
<link rel="stylesheet" type="text/css" href="node_modules/ng2-slim-loading-bar/style.css">
<!-- Demo Styling -->
<link rel="stylesheet" href="skeleton.css">
<style>
body {
padding: 0;
margin: 0;
}
header {
border-bottom: 1px solid #eee;
height: 6.5rem;
}
.navbar-list {
list-style: none;
margin-bottom: 0;
}
.navbar-item {
margin-bottom: 0;
position: relative;
}
.navbar-link {
text-transform: uppercase;
font-size: 11px;
font-weight: 600;
letter-spacing: .2rem;
margin-right: 35px;
text-decoration: none;
line-height: 6.5rem;
color: #222;
}
small {
font-size: 6px;
opacity: .2;
}
code {
word-break: break-word;
}
@media (max-width: 400px) {
header {
display: none;
}
}
</style>
<base href="/">
</head>
<body>
<demo-app>Loading...</demo-app>
</body>
<!-- Polyfill(s) for older browsers -->
<script src="https://unpkg.com/[email protected]/client/shim.min.js"></script>
<script src="https://npmcdn.com/[email protected]"></script>
<script src="https://npmcdn.com/[email protected]"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.39/system.js"></script>
<script src="systemjs.config.js"></script>
<script>
System.import('dist/main').catch(function(err){ console.error(err); });
</script>
</html>