-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
100 lines (85 loc) · 2.75 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
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>alexthiel.de</title>
<script type="text/javascript">
(function () {
var path = window.location.pathname
.toLowerCase()
.replace(/^\//, "")
.replace(/\/$/, "");
var map = {
focus: "https://docs.google.com/presentation/d/1YY7Efrm8dVM5mXv9n5OZzm7JeRK9qpyQngZ2h0H8hYg/view",
resume: "https://drive.google.com/file/d/1n162AucpzikRjBUpEWhbumNytlmquvS-/view",
schedule: "https://calendar.google.com/calendar/selfsched?sstoken=UUQ4Z083dy0yV2VyfGRlZmF1bHR8MmJjYTlhZWIxODM1NDgwOTU4MWQ0OWYyNTk2ZTUzMGY",
// This is the Wunder self-sched, to be removed at some point
wunder: "https://calendar.google.com/calendar/selfsched?sstoken=UUFZa3VVeUpwbm54fGRlZmF1bHR8MTBmMjMwMzIyZTE3NmJlNDY2MGZiYjc0ZWQ0ZWQ5Mjc",
thesis: "https://drive.google.com/file/d/0By_VnNR4brAGNEZlX1YzR1JlVE0/view",
thereisnobox: "https://docs.google.com/document/d/1y9p3qOyrYfGyTu2xiCfRvW_1_8vgt-VfiOdaRoD9Mgc/edit",
};
if (map[path]) {
document.location.href = map[path];
}
})();
</script>
<style type="text/css" media="screen">
/* Taken from GitHub pages default 404 page */
body {
background-color: #f1f1f1;
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.container {
margin: 50px auto 40px auto;
width: 600px;
text-align: center;
}
a {
color: #4183c4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
h1 {
width: 800px;
position: relative;
left: -100px;
letter-spacing: -1px;
line-height: 60px;
font-size: 60px;
font-weight: 100;
margin: 0px 0 50px 0;
text-shadow: 0 1px 0 #fff;
}
p {
color: rgba(0, 0, 0, 0.5);
margin: 20px 0;
line-height: 1.6;
}
ul {
list-style: none;
margin: 25px 0;
padding: 0;
}
li {
display: table-cell;
font-weight: bold;
width: 1%;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p><strong>File not found</strong></p>
<p>
The site configured at this address does not
contain the requested file.
</p>
<p>
Go back to <a href="/index.html">the start page</a>.
</p>
</div>
</body>
</html>