-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
28 lines (27 loc) · 1.01 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
<!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="utf-8"/>
<title>Public Lab | static archive</title>
<link rel="stylesheet" href="https://jywarren.github.io/markdown-pages/node_modules/spectre-markdown.css/dist/markdown.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Lora">
<link rel="stylesheet" href="https://jywarren.github.io/markdown-pages-template/style.css">
</head>
<body>
<header>
<a href="#">Public Lab</a>
<a href="https://github.com/publiclab/publiclab-archive">about</a>
</header>
<div class="md-pages markdown-css responsive"></div>
<script>
var path = document.location.href.split('.org/')[1];
if (['wiki','notes','page','map','feature','event','question'].includes(path.split('/')[0])) {
window.location.replace("/#"+path);
} else {
window.location.replace("/#/wiki/"+path);
}
</script>
</body>
</html>