-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
55 lines (51 loc) · 2.32 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="robots" content="noindex,nofollow" />
<title>Nothing found for 404</title>
<style type="text/css">
body {margin: 0; padding: 20px; text-align:center; font-family:Arial, Helvetica, sans-serif; font-size:14px; color:#666666;}
.error_page {width: 600px; padding: 50px; margin: auto;}
.error_page h1 {margin: 20px 0 0;}
.error_page p {margin: 10px 0; padding: 0;}
a {color: #1b6ada; text-decoration:none;}
a:hover { text-decoration:underline;}
</style>
<script>
if(window.location.pathname.substr(0,6) == '/vitae'){
window.location.replace('https://pkg.mitchelloharawild.com' + window.location.pathname);
}
if(window.location.pathname.substr(0,13) == '/drake-manual'){
window.location.replace('https://books.ropensci.org/drake' + window.location.pathname.substr(13));
}
if(window.location.pathname.substr(0,18) == '/occurrence-manual'){
window.location.replace('https://books.ropensci.org/occurrences' + window.location.pathname.substr(18));
}
if(window.location.pathname.substr(0,14) == '/fulltext-book'){
window.location.replace('https://books.ropensci.org/fulltext' + window.location.pathname.substr(14));
}
if(window.location.pathname.substr(0,18) == '/http-testing-book'){
window.location.replace('https://books.ropensci.org/http-testing' + window.location.pathname.substr(18));
}
if(window.location.pathname.substr(0,7) == '/travis'){
window.location.replace('https://docs.ropensci.org/travis' + window.location.pathname.substr(7));
}
if(window.location.pathname.substr(0,16) == '/actions_sandbox'){
window.location.replace('https://orchid00.github.io' + window.location.pathname);
}
if(window.location.pathname.substr(0,18) == '/r-docker-tutorial'){
window.location.replace('https://jsta.github.io' + window.location.pathname);
}
</script>
</head>
<body class="login">
<div class="error_page">
<img alt="ropenscibot" src="/ropenscibot.png" />
<h1>Oh no! It's a 404!</h1>
<p>The page you are looking for cannot be found.</p>
<p>Return to the <a href="/">index</a></p>
</div>
</body>
</html>