-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.html
50 lines (49 loc) · 3.58 KB
/
info.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
<!DOCTYPE html>
<html>
<head>
<title>About | Hyparkour</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="jquery.js"></script>
<script src="new.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="192x192" href="/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#dcbe34">
<meta name="msapplication-TileColor" content="#00a300">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<meta name="theme-color" content="#ffffff">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-PY98YYMB6D"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-PY98YYMB6D');
</script>
</head>
<body class="infoPage" style="background: #1a1a1a">
<header>
<img src="logo.png" alt="Logo" class="logo"/>
<span class="title"><a href="index" class="link hidden">Hyparkour</a></span>
<a href="javascript:toggleInfo()" class="rightToggle"><i class="material-icons rightToggleIcon">info</i></a>
</header>
<main>
<h1>About Hyparkour</h1>
<h2>Hyparkour is a site which allows you to see player's best parkour times and compare them to the world records.</h2>
<h3>The data is based on speedrun.com's API, so as soon as a new run is verified it will be automatically updated on this site.</h3>
<h3>Hyparkour wouldn't have been possible without the following:</h3>
<span class="statContainer">- <a class="link" href="https://www.speedrun.com/mcm_hsp" target="_blank">speedrun.com</a>'s API for all the record times</span><br>
<span class="statContainer">- <a class="link" href="https://mc-heads.net/" target="_blank">mc-heads.net</a>'s API for player heads and fallback name capitalization</span><br>
<span class="statContainer">- <a class="link" href="https://api.hypixel.net/" target="_blank">Hypixel</a>'s API for looking up individual player's times</span><br><br>
<span class="statContainer">The parkour screenshots were taken by me and are freely available for reuse and modification on <a class="link" href="https://github.com/sd0e/Hyparkour/tree/master/backgrounds" target="_blank">GitHub</a>.</span><br>
<span class="statContainer">If any issues emerge, please report them to me by using <a class="link" href="https://github.com/sd0e/Hyparkour/issues" target="_blank">GitHub Issues</a>.</span><br><br>
<span class="statContainer">Hyparkour was developed by <a class="link" href="https://github.com/sd0e" target="_blank">sd0e</a> in 2021 and was last updated on August 4 2021.</span>
</main>
</body>
</html>