-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
176 lines (112 loc) · 3.52 KB
/
404.html
File metadata and controls
176 lines (112 loc) · 3.52 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
<!DOCTYPE html>
<html lang="ru-ru">
<head>
<meta charset="utf-8" />
<title>404 Page not found</title>
<script data-goatcounter="https://drypa.github.io/count"
async src="//drypa.github.io/count.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="alternate"
type="application/rss+xml"
href="https://drypa.github.io/index.xml"
title="Andrey Krasavin Home Page"
/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="404 Page not found"/>
<meta name="twitter:description" content=""/>
<link rel="stylesheet" href="https://drypa.github.io/fontawesome/css/all.min.css" />
<link
id="dark-mode-theme"
rel="stylesheet"
href="https://drypa.github.io/css/dark.css"
/>
<script>
var darkTheme = document.getElementById('dark-mode-theme')
var storedTheme = localStorage.getItem('dark-mode-storage')
if (storedTheme === 'dark') {
darkTheme.disabled = false
} else if (storedTheme === 'light') {
darkTheme.disabled = true
}
</script>
<script src="https://drypa.github.io/js/main.bundle.js"></script>
<script src="https://drypa.github.io/js/instantpage.min.js" type="module" defer></script>
<meta name="generator" content="Hugo 0.96.0" />
</head>
<body>
<header>
<nav class="navbar">
<div class="nav">
<a href="https://drypa.github.io/" class="nav-logo">
<img
src="https://drypa.github.io/images/icon.png"
width="50"
height="50"
alt="Logo"
/>
</a>
<ul class="nav-links">
<li>
<a href="/about/" id="About"
><em class="fas fa-user fa-lg"></em
></a>
</li>
<li>
<a href="/tags" id="Tags"
><em class="fas fa-tag fa-lg"></em
></a>
</li>
<li>
<a href="/categories" id="Category"
><em class="fas fa-folder-open fa-lg"></em
></a>
</li>
<li>
<a href="/search" id="Search"
><em class="fas fa-search fa-lg"></em
></a>
</li>
<li>
<a href="/archives" id="Archives"
><em class="fas fa-archive fa-lg"></em
></a>
</li>
</ul>
</div>
</nav>
<div class="intro-header">
<div class="container">
<div class="page-heading">
<h1>
404 Page not found
</h1>
</div>
</div>
</div>
</header>
<footer>
<div class="social-icons">
<a href="link%20to%20social%20media" name="name of social media">
<em class="A icon from https://fontawesome.com/"></em>
</a>
</div>
<div class="container">
<p class="credits copyright">
<a href="https://drypa.github.io/about">Andrey Krasavin</a>
©
2022
/
<a href="https://drypa.github.io/">Andrey Krasavin Home Page</a>
–
<em class="fas fa-moon" id="dark-mode-toggle"></em>
</p>
<p class="credits theme-by">
<a href="https://gohugo.io">Hugo</a>
<a href="https://github.com/matsuyoshi30/harbor">Harbor</a>
</p>
</div>
</footer>
</body>
</html>