-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
48 lines (45 loc) · 1.68 KB
/
Copy path404.html
File metadata and controls
48 lines (45 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Page not found — DrobyshevDev</title>
<meta name="theme-color" content="#fdfcfa" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#131316" media="(prefers-color-scheme: dark)">
<meta name="robots" content="noindex">
<link rel="icon" href="/assets/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/site.css">
<script>
try {
var t = localStorage.getItem("theme");
if (t === "dark" || t === "light") document.documentElement.setAttribute("data-theme", t);
} catch (e) {}
</script>
</head>
<body>
<header class="site-header">
<div class="wrap">
<a class="brand" href="/">
<img class="mark" src="/assets/mark.png" alt="" width="22" height="22">
DrobyshevDev
</a>
<nav class="nav" id="primary-nav" aria-label="Primary">
<a href="/#projects">Projects</a>
<a class="ext" href="https://github.com/DrobyshevDev" rel="noopener">GitHub</a>
</nav>
</div>
</header>
<main class="notfound">
<p class="code">HTTP 404</p>
<h1>This page does not exist</h1>
<p class="lead" style="margin-inline:auto">
The link may be out of date, or the page moved. Страница не найдена — возможно, ссылка устарела.
</p>
<p style="display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-top:8px">
<a class="btn btn-primary" href="/">Go to the home page</a>
<a class="btn btn-secondary" href="https://github.com/DrobyshevDev" rel="noopener">Browse the organisation</a>
</p>
</main>
<script src="/assets/site.js" defer></script>
</body>
</html>