-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
72 lines (72 loc) · 3.1 KB
/
404.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
<!doctype html>
<html lang="en">
<head>
<title>404</title>
<link rel=”canonical” href=”https://webosu.online/”/>
<meta name="description" content="The unofficial web port of the rhythm game osu!">
<link rel="icon" href="assets/img/favicon.png">
<link rel="stylesheet" href="assets/css/picnic.min.css">
<link rel="stylesheet"href="assets/css/main.css">
<link rel="stylesheet"href="assets/css/font.css">
<script defer data-domain="webosu.online" src="https://plausible.io/js/plausible.js"></script>
</head>
<body>
<!--Nav Bar-->
<nav id="main-nav">
<div class="nav-link">
<a href="index.html" class="brand">webosu!</a>
<a href="new.html" class="pseudo button">New</a>
<a href="hot.html" class="pseudo button">Popular</a>
</div>
<div class="nav-search">
<form action="search.html">
<container id="searchbar" class="searchbar">
<input type="text" name="q" placeholder="Beatmap name or Set ID" />
</container>
</form>
</div>
<div class="nav-tool">
<a href="faq.html" class="pseudo button">FAQ</a>
<a href="local.html" class="pseudo button">Favorites</a>
<a href="settings.html" class="pseudo button">Settings</a>
<a onclick="document.documentElement.requestFullscreen();" class="pseudo button">F11</a>
</div>
</nav>
<!--Main page-->
<div class="main-page" id="main-page">
<div class="main-content">
<div class="announcement">
Notice: API is now switched to <a href="https://catboy.best">Mino</a>!! For any issues join the <a href="https://discord.gg/v7wBtSdYzx">Discord</a>
</div>
<br>
<div class="index-area">
<h2>The page you are looking for doesn't exist. Check the URL or click the webosu! button to go home.</h2>
<!--Footer-->
<footer>
<div class="footer">
<div class="footer-infos">
<span class="footer-info">Join the <a href="https://discord.gg/v7wBtSdYzx">Discord server</a>!</span>
<span class="footer-info">Beatmap API: <a href="https://catboy.best/">Mino</a></span>
<span class="footer-info">Stable Release: <a href="https://github.com/BlaNKtext/webosu">3.0</span>
</div>
</div>
</footer>
</div>
</div>
</body>
<script type="module">
import { initializeApp } from "https://www.gstatic.com/firebasejs/9.0.2/firebase-app.js";
import { getAnalytics } from "https://www.gstatic.com/firebasejs/9.0.2/firebase-analytics.js";
const firebaseConfig = {
apiKey: "AIzaSyBJyrBf03GhNZbupO6uU-wtDTfAC_zY8_0",
authDomain: "webosu.firebaseapp.com",
projectId: "webosu",
storageBucket: "webosu.appspot.com",
messagingSenderId: "138250997417",
appId: "1:138250997417:web:be7407c18de702880763b8",
measurementId: "G-55J58MR5ZW"
};
const app = initializeApp(firebaseConfig);
const analytics = getAnalytics(app);
</script>
</html>