forked from pubkey/rxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
131 lines (115 loc) · 2.63 KB
/
404.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html
lang="en"
prefix="og: https://ogp.me/ns#"
>
<head>
<meta charset="utf-8">
<title>RxDB - 404 Page Not Found</title>
<link
rel="canonical"
href="https://rxdb.info/"
/>
<meta
name="description"
content="RxDB Page Not Found."
/>
<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>404 Page Not Found</h1>
<p><b>The page you are looking for does not exist anymore or never has existed.</b></p>
<p>If you have found this page through a link, you should tell the link author to update it.</p>
<p>Maybe one of these can help you to find the desired content:</p>
<div class="ul-container">
<ul>
<li>
<a href="https://rxdb.info/quickstart.html">RxDB Documentation</a>
</li>
<li>
<a href="https://rxdb.info/chat.html">RxDB Discord Channel</a>
</li>
<li>
<a href="https://twitter.com/intent/user?screen_name=rxdbjs">Follow RxDB on twitter</a>
</li>
<li>
<a href="https://github.com/pubkey/rxdb">RxDB at Github</a>
</li>
</ul>
</div>
</body>
</html>