-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
122 lines (96 loc) · 3.36 KB
/
404.html
File metadata and controls
122 lines (96 loc) · 3.36 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
<!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">
<title>Blog</title>
<meta name="description" content="Snippets of thoughts.">
<link rel="stylesheet" href="/assets/styles/core.css?v=20240820212204">
<link rel="stylesheet" href="/assets/styles/fontello.css?v=20240820212204">
<link rel="stylesheet" href="/assets/styles/highlighting/default.css?v=20240820212204">
<link rel="canonical" href="/404.html">
<link rel="alternate" type="application/rss+xml" title="Blog" href="/feed.xml">
<!-- Load KaTeX -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.css">
<script src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/katex.min.js"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.12.0/dist/contrib/auto-render.min.js" integrity="sha384-mll67QQFJfxn0IYznZYonOWZ644AWYC+Pt2cHqMaRhXVrursRwvLnLaebdGIlYNa" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
<!-- JQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<main class="page-content" aria-label="Content">
<div class="wrapper">
<style type="text/css" media="screen">
.container {
margin: 10px auto;
max-width: 600px;
text-align: center;
}
h1 {
margin: 30px 0;
font-size: 4em;
line-height: 1;
letter-spacing: -1px;
}
</style>
<div class="container">
<h1>404</h1>
<p><strong>Page not found :(</strong></p>
<p>The requested page could not be found.</p>
</div>
</div>
<script type="text/javascript">
(function () {
var resize = function () {
this.width = 0.5 * (this.naturalWidth || this.width);
}
Array.prototype.forEach.call(document.querySelectorAll(".half-size, .retina2x"), function(el) {
if (el.naturalWidth) {
resize.call(el);
} else {
el.onload = resize;
}
});
})();
</script>
</main>
<footer class="site-footer">
<div class="wrapper">
<div class="social-links">
<a class="social-link social-github" href="https://github.com/Mallku2">
<i class="icon-github"></i>
</a>
<!-- <a class="social-link social-twitter" href="https://twitter.com/"> -->
<!-- <i class="icon-twitter"></i> -->
<!-- </a> -->
<!-- <a class="social-link social-instagram" href="https://instagram.com/"> -->
<!-- <i class="icon-instagram"></i> -->
<!-- </a> -->
<!-- <a class="social-link social-rss" href="/feed.xml" target="_blank"> -->
<!-- <i class="icon-rss"></i> -->
<!-- </a> -->
</div>
<div class="credits">
KAGAMI, made with <i class="icon-heart"></i> by Kamikat
</div>
</div>
<!-- Parse the Latex divs with Katex-->
<script type="text/javascript">
$("script[type='math/tex']").replaceWith(
function(){
var tex = $(this).text();
return katex.renderToString(tex, {displayMode: false});
});
$("script[type='math/tex; mode=display']").replaceWith(
function(){
var tex = $(this).text();
return katex.renderToString(tex.replace(/%.*/g, ''), {displayMode: true});
});
</script>
</footer>
</body>
</html>