-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path429.html
93 lines (82 loc) · 4.26 KB
/
429.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>c h i 歳 - Error 429</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="theme-color" content="#171a21"/>
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Raleway&display=swap" rel="stylesheet">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/tracker.css">
<!-- JS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src='js/theme/theme.js'></script>
<script src='js/main/state.js'></script>
<script>
window.onload = function() {
try { setTheme(); } // attempt to change dark mode switch string will fail
catch (ExpectedException) { console.log(ExpectedException, "TypeError is expected, and a hack."); }
let videos = [
"assets/errors/kyousougiga-ep0.mp4",
"assets/errors/one-punch-man-ep1.mp4",
"assets/errors/revue-starlight-ep1.mp4",
"assets/errors/owari-no-seraph-ep3.mp4",
"assets/errors/rolling-girls-ep10.mp4"
];
let i = Math.floor(Math.random() * videos.length);
document.getElementById("video").src = videos[i];
document.getElementById("video-src").innerHTML = `source: ${videos[i].split("/").slice(-1)[0]}`;
document.getElementById("video-src").style.fontSize = "1.2rem";
}
</script>
<!-- ga-lite analytics -->
<script>
(function(e,t,n,i,s,a,c){e[n]=e[n]||function(){(e[n].q=e[n].q||[]).push(arguments)}
;a=t.createElement(i);c=t.getElementsByTagName(i)[0];a.async=true;a.src=s
;c.parentNode.insertBefore(a,c)
})(window,document,"galite","script","https://cdn.jsdelivr.net/npm/ga-lite@2/dist/ga-lite.min.js");
galite('create', 'UA-165670650-1', 'auto');
galite('send', 'pageview');
</script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png">
<link rel="manifest" href="assets/favicon/site.webmanifest">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container simple-content">
<div class="row">
<div class="u-full-width">
<h4>Error 429: Too Many Requests</h4>
<video controls autoplay loop id="video" style="width:100%;">
Your browser doesn't support mp4 videos.
</video>
<p>You sent too many requests to AniList, and it didn't like that.<br>
This is most likely to happen while viewing a VA's overview page.
Wait a few seconds (or worse case, a minute), then try again.<br>
In the meantime, here's a random clip to kill time.<br><br>
Click <a href="./">here</a> to return to the main page.
</p>
<p id="video-src"></p>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>