-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
159 lines (75 loc) · 3.12 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<title>404 Page not found - JinnyYi</title>
<meta name="description" content="" />
<meta name="author" content="" />
<link rel="preload stylesheet" as="style" href="https://jinnyyi.github.io/app.min.css" />
<link rel="preload" as="image" href="https://jinnyyi.github.io/theme.png" />
<link rel="preload" as="image" href="https://jinnyyi.github.io/twitter.svg" />
<link rel="preload" as="image" href="https://jinnyyi.github.io/github.svg" />
<link rel="icon" href="https://jinnyyi.github.io/favicon.ico" />
<link rel="apple-touch-icon" href="https://jinnyyi.github.io/apple-touch-icon.png" />
<meta name="generator" content="Hugo 0.68.3" />
<meta property="og:title" content="404 Page not found" />
<meta property="og:description" content="" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://jinnyyi.github.io/404.html" />
<meta itemprop="name" content="404 Page not found">
<meta itemprop="description" content="">
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="404 Page not found"/>
<meta name="twitter:description" content=""/>
</head>
<body class="not-ready" data-menu="true">
<header class="header">
<p class="logo">
<a class="site-name" href="https://jinnyyi.github.io/">JinnyYi</a><a class="btn-dark"></a>
</p>
<script>
let bodyClx = document.body.classList;
let btnDark = document.querySelector('.btn-dark');
let sysDark = window.matchMedia('(prefers-color-scheme: dark)');
let darkVal = localStorage.getItem('dark');
let setDark = (isDark) => {
bodyClx[isDark ? 'add' : 'remove']('dark');
localStorage.setItem('dark', isDark ? 'yes' : 'no');
};
setDark(darkVal ? darkVal === 'yes' : sysDark.matches);
requestAnimationFrame(() => bodyClx.remove('not-ready'));
btnDark.addEventListener('click', () => setDark(!bodyClx.contains('dark')));
sysDark.addEventListener('change', (event) => setDark(event.matches));
</script>
<nav class="menu">
<a class="" href="/about/">About</a>
</nav>
<nav class="social">
<a
class="twitter"
style="--url: url(./twitter.svg)"
href="https://twitter.com/@JinnyYi17"
target="_blank"
></a>
<a
class="github"
style="--url: url(./github.svg)"
href="https://github.com/JinnyYi"
target="_blank"
></a>
</nav>
</header>
<main class="main">
<h1 class="title-404">404</h1>
</main>
<footer class="footer">
<p>© 2022 <a href="https://jinnyyi.github.io/">JinnyYi</a></p>
<p>Powered by <a href="https://gohugo.io/" rel="noopener" target="_blank">Hugo️️</a>️</p>
<p>
<a href="https://github.com/nanxiaobei/hugo-paper" rel="noopener" target="_blank">Paper 5.1</a>
</p>
</footer>
</body>
</html>