forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquickstart-demo.html
117 lines (104 loc) · 2.11 KB
/
quickstart-demo.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html
lang="en"
prefix="og: https://ogp.me/ns#"
>
<head>
<meta charset="utf-8">
<title>RxDB - Quickstart Demo</title>
<link
rel="canonical"
href="https://rxdb.info/"
/>
<meta
name="description"
content="RxDB Quickstart Demo"
/>
<meta
property="og:title"
content="RxDB - A client side, offline-first, reactive database for JavaScript Applications"
/>
<meta
name="theme-color"
content="#e6008d"
/>
<meta
name="twitter:site"
content="@rxdbjs"
/>
<meta
name="viewport"
content="width=device-width,initial-scale=1.0"
/>
<link
rel="stylesheet"
href="styles/variables.css"
/>
<link
rel="stylesheet"
href="styles/landingpage.css"
/>
<link
rel="icon"
href="./files/logo/logo.svg"
sizes="any"
type="image/svg+xml"
/>
<link
rel="apple-touch-icon"
href="./files/logo/icon.png"
/>
<script
src="analytics.js"
defer
></script>
</head>
<style>
body {
text-align: center;
padding-top: 90px;
padding-left: 40px;
padding-right: 40px;
width: auto;
}
a {
color: white;
}
a:visited {
color: white;
}
a:hover {
text-decoration: underline;
}
.ul-container {
text-align: center;
}
ul {
display: inline-block;
text-align: left;
}
li {
margin: 10px 0;
}
</style>
<body>
<a href="/">
<div class="logo">
<img
src="./files/logo/logo_text.svg"
alt="RxDB"
width="160"
/>
</div>
</a>
<h1>RxDB Quickstart demo</h1>
<p><b>You will be redirected in a few seconds.</b></p>
<p>
<a href="https://codesandbox.io/s/priceless-wave-qpjids">Click here to open</a>
</p>
<meta
http-equiv="Refresh"
content="0; url=https://codesandbox.io/s/priceless-wave-qpjids"
/>
</body>
</html>