-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
35 lines (35 loc) · 1.2 KB
/
404.html
File metadata and controls
35 lines (35 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found</title>
<link rel="icon" href="images/logo.png" type="image/png">
<script>
(function() {
var path = window.location.pathname || '';
try {
if (/^\/accept(?:\/?|$)/.test(path)) {
window.location.replace('/#download');
return;
}
} catch (e) { /* ignore */ }
})();
</script>
<style>
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; margin: 0; padding: 2rem; color: #0f172a; background: #f8fafc; }
.wrap { max-width: 720px; margin: 10vh auto 0; text-align: center; }
h1 { font-size: 1.5rem; margin: 0 0 0.5rem; }
p { color: #475569; }
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="wrap">
<h1>Page not found</h1>
<p>If you were expecting a download, go to <a href="/#download">messagram.org/#download</a>.</p>
<p><a href="/">Return to homepage</a></p>
</div>
</body>
</html>