forked from fennifith/fennifith.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
142 lines (104 loc) · 4.95 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="author" content="James Fenn">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="generator" content="James Fenn">
<title>FOUR HUNDRED AND FOUR</title>
<meta name="theme-color" content="#FFFFFF">
<meta name="mobile-web-app-capable" content="yes">
<link rel="manifest" href="/manifest.json">
<meta name="application-name" content="James Fenn">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-tooltip" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="msapplication-config" content="/ieconfig.xml">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="icon" sizes="16x16" href="/favicon.ico">
<link rel="icon" sizes="24x24" href="/images/favicon-24.ico">
<link rel="icon" sizes="32x32" href="/images/favicon-32.ico">
<link rel="icon" sizes="48x48" href="/images/favicon-48.ico">
<link rel="icon" sizes="64x64" href="/images/favicon-64.ico">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="white">
<meta name="apple-mobile-web-app-title" content="James Fenn">
<link rel="apple-touch-icon-precomposed" href="/images/favicon-152.png">
<link href="https://fonts.googleapis.com/css?family=Miriam+Libre|Roboto|Vollkorn" rel="stylesheet">
<link href="//fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="/css/styles.css" rel="stylesheet">
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@fennifith">
<meta name="twitter:site" content="@fennifith">
<meta name="twitter:title" content="FOUR HUNDRED AND FOUR">
<meta name="twitter:description" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="twitter:image" content="https://jfenn.me/images/me.jpg">
<meta name="og:title" content="FOUR HUNDRED AND FOUR">
<meta name="og:type" content="website">
<meta name="og:image" content="https://jfenn.me/images/headers/snowytrees.jpg">
<meta name="og:url" content="https://jfenn.me/404.html">
<meta name="og:description" content="Writer of bad puns and slightly better software. This website contains information about my adventures in programming, current projects, and me.">
<meta name="og:locale" content="en_US">
<meta name="og:site_name" content="James Fenn">
</head>
<body>
<main id="main" class="container">
<h1>Error 404</h1>
<h4>
Unfortunately, the thing you're looking for doesn't exist. Maybe you made a typo, or maybe
the page was moved or deleted.
</h4>
<p>
<a href="https://jfenn.me">Homepage</a>
</p>
</main>
<footer class="footer container" style="padding-bottom: 96px;">
<hr>
<div style="display: inline-block; float: right;">
<input id="darkThemeCheckBox" type="checkbox">
<label for="darkThemeCheckBox"></label>
<span>Dark Theme</span>
</div>
<script type="text/javascript">
const _darkThemeCheckBoxElement = document.getElementById("darkThemeCheckBox");
const _darkThemeListeners = [];
var _darkTheme = false;
function setDarkTheme(isDark) {
_darkTheme = isDark;
_darkThemeCheckBoxElement.checked = isDark;
if (isDark) {
document.body.classList.remove("--theme-light");
document.body.classList.add("--theme-dark");
} else {
document.body.classList.remove("--theme-dark");
document.body.classList.add("--theme-light");
}
let color = isDark ? "#212121" : "#FFFFFF";
document.querySelector("meta[name='theme-color']").setAttribute("content", color);
if (localStorage) {
if (isDark)
localStorage.setItem("darkTheme", ".");
else localStorage.removeItem("darkTheme");
}
for (let i in _darkThemeListeners) {
_darkThemeListeners[i](isDark);
}
}
function addDarkThemeListener(listener) {
_darkThemeListeners.push(listener);
listener(_darkTheme);
}
_darkThemeCheckBoxElement.addEventListener("change", function() {
setDarkTheme(_darkThemeCheckBoxElement.checked);
});
setDarkTheme(localStorage && localStorage.getItem("darkTheme"));
</script>
<a class="footer__link" href="/redirects/?t=github&d=${}.github.io" target="_blank">Website Source Code</a>
<br>
<a class="footer__link" href="/policies/?web" target="_blank">Privacy Policy</a>
<br>
<a class="footer__link" href="/licenses" target="_blank">Open Source Licenses</a>
</footer>
<script src="//instant.page/3.0.0" type="module" defer integrity="sha384-OeDn4XE77tdHo8pGtE1apMPmAipjoxUQ++eeJa6EtJCfHlvijigWiJpD7VDPWXV1"></script>
</body>
</html>