-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
260 lines (211 loc) · 5.93 KB
/
404.html
File metadata and controls
260 lines (211 loc) · 5.93 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
<!DOCTYPE html>
<html lang="ko-kr">
<head>
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="https://re-st.github.io/images/github.png" />
<title>404</title>
<meta name="title" content="404 Page not found" />
<meta name="description" content="If this site slow-loads please e-mail me." />
<meta name="keywords" content="essays,logs,project,research,seminars,afl,ai-answer,blog-project,bookmark,diary,discovery,essay,explanation,how-to,info,invited-lecture,lecture-summary,memo,outdated,paper-summary,record,repost,solution,talk,tool-introduction,weekly-writing,대수학,대학원,독후감,역사,영화감상문,이산수학,정보보호대학원-세미나,조합론,진로,최적화,판타지,한국사,확률론," />
<meta property="og:url" content="https://re-st.github.io/404.html">
<meta property="og:site_name" content="Park, Geon (re-st)">
<meta property="og:title" content="404 Page not found">
<meta property="og:description" content="If this site slow-loads please e-mail me.">
<meta property="og:locale" content="ko_kr">
<meta property="og:type" content="website">
<meta property="og:image" content="https://re-st.github.io/images/share.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://re-st.github.io/images/share.png">
<meta name="twitter:title" content="404 Page not found">
<meta name="twitter:description" content="If this site slow-loads please e-mail me.">
<meta itemprop="name" content="404 Page not found">
<meta itemprop="description" content="If this site slow-loads please e-mail me.">
<meta itemprop="image" content="https://re-st.github.io/images/share.png">
<meta name="referrer" content="no-referrer-when-downgrade" />
<style>
:root {
--width: 720px;
--font-main: Verdana, sans-serif;
--font-secondary: Verdana, sans-serif;
--font-scale: 1em;
--background-color: #fff;
--heading-color: #222;
--text-color: #444;
--link-color: #3273dc;
--visited-color: #8b6fcb;
--blockquote-color: #222;
}
@media (prefers-color-scheme: dark) {
:root {
--background-color: #01242e;
--heading-color: #eee;
--text-color: #ddd;
--link-color: #8cc2dd;
--visited-color: #8b6fcb;
--blockquote-color: #ccc;
}
}
body {
font-family: var(--font-secondary);
font-size: var(--font-scale);
margin: auto;
padding: 20px;
max-width: var(--width);
text-align: left;
background-color: var(--background-color);
word-wrap: break-word;
overflow-wrap: break-word;
line-height: 1.5;
color: var(--text-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: var(--font-main);
color: var(--heading-color);
}
a {
color: var(--link-color);
cursor: pointer;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
nav a {
margin-right: 8px;
}
strong,
b {
color: var(--heading-color);
}
button {
margin: 0;
cursor: pointer;
}
time {
font-family: monospace;
font-style: normal;
font-size: 15px;
}
main {
line-height: 1.6;
}
table {
width: 100%;
}
hr {
border: 0;
border-top: 1px dashed;
}
img {
max-width: 100%;
}
code {
font-family: monospace;
padding: 2px;
border-radius: 3px;
}
blockquote {
border-left: 1px solid #999;
color: var(--blockquote-color);
padding-left: 20px;
font-style: italic;
}
footer {
padding: 25px 0;
text-align: center;
}
.title:hover {
text-decoration: none;
}
.title h1 {
font-size: 1.5em;
}
.inline {
width: auto !important;
}
.highlight,
.code {
border-radius: 3px;
margin-block-start: 1em;
margin-block-end: 1em;
overflow-x: auto;
}
ul.blog-posts {
list-style-type: none;
padding: unset;
}
ul.blog-posts li {
display: flex;
}
ul.blog-posts li span {
flex: 0 0 130px;
}
ul.blog-posts li a:visited {
color: var(--visited-color);
}
</style>
<style>
[data-theme="light"] {
--background-color: #fff;
--heading-color: #222;
--text-color: #444;
--link-color: #3273dc;
--visited-color: #8b6fcb;
--blockquote-color: #222;
}
[data-theme="dark"] {
--background-color: #01242e;
--heading-color: #eee;
--text-color: #ddd;
--link-color: #8cc2dd;
--visited-color: #8b6fcb;
--blockquote-color: #ccc;
}
</style>
</head>
<body>
<header><a href="/" class="title">
<h2>Park, Geon (re-st)</h2>
</a>
<nav>
<a href="/pages/about/">[Whoami]</a>
<a href="/cv/">[CV]</a>
<button id="theme-toggle" onclick="toggleTheme()" title="Toggle light/dark mode" style="background:none;border:none;cursor:pointer;font-size:1.2em;padding:0 0.3em;">🌙</button>
</nav>
<script>
(function() {
var stored = localStorage.getItem('theme');
if (stored === 'light') {
document.documentElement.setAttribute('data-theme', 'light');
} else if (stored === 'dark') {
document.documentElement.setAttribute('data-theme', 'dark');
}
})();
function toggleTheme() {
var current = document.documentElement.getAttribute('data-theme');
var next = (current === 'dark') ? 'light' : 'dark';
document.documentElement.setAttribute('data-theme', next);
localStorage.setItem('theme', next);
document.getElementById('theme-toggle').textContent = (next === 'dark') ? '☀️' : '🌙';
}
window.addEventListener('DOMContentLoaded', function() {
var stored = localStorage.getItem('theme');
document.getElementById('theme-toggle').textContent = (stored === 'dark') ? '☀️' : '🌙';
});
</script>
</header>
<main>
<h1>404</h1>
<h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2>
</main>
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
</footer>
</body>
</html>