-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
138 lines (121 loc) · 4.32 KB
/
404.html
File metadata and controls
138 lines (121 loc) · 4.32 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Kart Krew Dev</title>
<meta charset="utf-8" />
<meta name="generator" content="Pelican" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="og:site_name" content="Kart Krew Dev">
<meta name="og:image" content="https://www.kartkrew.org/theme/images/kkd_logo_V3.svg" />
<style>
/* archivo-black-regular - latin */
@font-face {
font-display: swap;
font-family: 'Archivo Black';
font-style: normal;
font-weight: 400;
src: url('https://www.kartkrew.org/theme/fonts/archivo-black-v21-latin-regular.woff2') format('woff2');
}
/* lato-regular - latin */
@font-face {
font-display: swap;
font-family: 'Lato';
font-style: normal;
font-weight: 400;
src: url('https://www.kartkrew.org/theme/fonts/lato-v24-latin-regular.woff2') format('woff2');
}
/* lato-italic - latin */
@font-face {
font-display: swap;
font-family: 'Lato';
font-style: italic;
font-weight: 400;
src: url('https://www.kartkrew.org/theme/fonts/lato-v24-latin-italic.woff2') format('woff2');
}
/* lato-900 - latin */
@font-face {
font-display: swap;
font-family: 'Lato';
font-style: normal;
font-weight: 900;
src: url('https://www.kartkrew.org/theme/fonts/lato-v24-latin-900.woff2') format('woff2');
}
/* lato-900italic - latin */
@font-face {
font-display: swap;
font-family: 'Lato';
font-style: italic;
font-weight: 900;
src: url('https://www.kartkrew.org/theme/fonts/lato-v24-latin-900italic.woff2') format('woff2');
}
</style>
<link rel="icon" href="https://www.kartkrew.org/theme/images/kkd_logo_V3_white.svg" type="image/x-icon"/>
<link rel="stylesheet" href="https://www.kartkrew.org/theme/css/reset.css">
<link rel="stylesheet" href="https://www.kartkrew.org/theme/css/style.css">
<link href="https://www.kartkrew.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="Kart Krew Dev Full Atom Feed" />
</head>
<body class="">
<header class="nav-header">
<nav class="nav" aria-label="Main Menu">
<a href="/index.html" class="site-logo">
<img width="48" height="48" alt="Kart Krew" src="https://www.kartkrew.org/theme/images/kkd_logo_V3_white.svg">
</a>
<ul class="page-list">
<li><a href="https://www.kartkrew.org/news.html">News</a></li>
</ul>
</nav>
</header>
<main class="page-main">
<h1>404 — Not found</h1>
<p>What were you hoping to find?</p>
</main>
<footer class="page-footer">
<div class="socials">
<a href="https://www.kartkrew.org/feeds/all.atom.xml">
<img width="32" height="32" alt="Feed" src="https://www.kartkrew.org/theme/images/iconmonstr-rss-feed-1.svg">
</a>
<a href="https://twitter.com/kartkrewdev">
<img width="32" height="32" alt="Twitter" src="https://www.kartkrew.org/theme/images/iconmonstr-twitter-1.svg">
</a>
<a href="https://www.youtube.com/@KartKrewDev">
<img width="32" height="32" alt="YouTube" src="https://www.kartkrew.org/theme/images/iconmonstr-youtube-6.svg">
</a>
<a href="https://kartkrew.org/discord">
<img width="32" height="32" alt="Discord" src="https://www.kartkrew.org/theme/images/iconmonstr-discord-1.svg">
</a>
<a href="https://gitlab.com/kart-krew-dev">
<img width="32" height="32" alt="Git" src="https://www.kartkrew.org/theme/images/iconmonstr-git-1.svg">
</a>
</div>
<p>© Kart Krew Dev</p>
<p>
Kart Krew is not affiliated with SEGA. Dr. Robotnik’s Ring Racers, SRB2Kart,
SRB2 Top-Down and all related software are works of fan art. Dr. Robotnik
and related characters are property of SEGA.
</p>
<p>Social icons used under license from <a href="https://iconmonstr.com">iconmonstr</a> © Alexander Kahlkopf</p>
</footer>
<script defer type="text/javascript">
let autoplayhook = (ev) => {
let autoplayVideos = document.querySelectorAll('video.intersect-autoplay');
let handler = async (entries) => {
for (let entry of entries) {
if (entry.isIntersecting === true) {
if (!entry.target.playing) {
await entry.target.play();
}
} else {
if (!entry.target.paused) {
await entry.target.pause();
}
}
}
};
let observer = new IntersectionObserver(handler);
for (let video of autoplayVideos) {
observer.observe(video);
}
};
document.addEventListener('DOMContentLoaded', autoplayhook);
</script></body>
</html>