-
Notifications
You must be signed in to change notification settings - Fork 76
/
index.html
94 lines (86 loc) · 2.49 KB
/
index.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
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OutRed | Home</title>
<link rel="stylesheet" href="./styles/style.css" />
<!-- PWA LINKS -->
<link rel="manifest" href="/assets/json/manifest.json" />
<meta name="theme-color" content="#6C0BA9" />
<link
id="favicon"
rel="shortcut icon"
href="/assets/favicon.png"
type="image/x-icon"
/>
<script src="js/tabcloak.js"></script>
<!-- TEMP -->
<style>
body {
overflow: none;
}
#index-content {
margin-top: 90px;
}
</style>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-B5MYT5J8LH"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-B5MYT5J8LH");
</script>
<script src="/js/splashtexts.js"></script>
</head>
<body>
<div id="navbar"></div>
<script
src="snow.js"
type="9be7c424e46e3e34fc2173ae-text/javascript"
></script>
<div id="index-content">
<br /><br /><br /><br /><br />
<p class="title">OutRed</p>
<br />
<div id="phrase">
<p style="font-size: 30x">
<a
style="text-decoration: none; color: white"
href="https://discord.gg/FB6NtPkfwY"
>Loading...</a
>
</p>
<!-- splash text code -->
<script>
document.getElementById("phrase").innerHTML = getRandomPhrase();
</script>
</div>
<br /><br /><br />
<!-- the play now rainbow button -->
<a class="rainbow" href="/g/index.html">Play Now</a
><br /><br /><br /><br />
<br /><br />
<!-- the footer -->
<footer style="position: fixed; bottom: 0">
<a href="https://discord.gg/FB6NtPkfwY" target="_blank"></a>
<p>© OutRed</p>
<a href="https://github.com/OutRed/v4" target="_blank"></a>
</footer>
</div>
<!-- PWA Offline script for the server worker-->
<script>
if ("serviceWorker" in navigator) {
navigator.serviceWorker.register("/js/sw.js");
}
</script>
<!-- the script that loads the nav bar, so i can change it in that one file and it changes across the entire site -->
<script src="/js/navbar.js"></script>
</body>
</html>