-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
38 lines (38 loc) · 1.04 KB
/
404.html
File metadata and controls
38 lines (38 loc) · 1.04 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
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pdf2txt - Page Not Found</title>
<meta name="robots" content="noindex">
<style>
body {
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, sans-serif;
background: #050505;
color: #f4f4f5;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
}
a { color: #a1a1aa; }
</style>
<script>
(function () {
var path = window.location.pathname || '/';
if (!path.endsWith('/')) {
var target = path + '/' + window.location.search + window.location.hash;
window.location.replace(target);
}
})();
</script>
</head>
<body>
<div>
<h1>Page not found</h1>
<p><a href="./">Go to home</a></p>
</div>
</body>
</html>