-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (66 loc) · 1.75 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
<!DOCTYPE html>
<html lang=en-US>
<meta charset="UTF-8">
<head>
<title>speed.siontea.com </title>
<link rel="stylesheet" href="index.css">
<link rel="icon" type="image/vnd.microsoft.icon" href="image/siontea.png" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2R3KB9L1KF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2R3KB9L1KF');
</script>
</head>
<body onload="check()">
<script>
function getCookie(name) {
var dc = document.cookie;
var prefix = name + "=";
var begin = dc.indexOf("; " + prefix);
if (begin == -1) {
begin = dc.indexOf(prefix);
if (begin != 0) return null;
}
else
{
begin += 2;
var end = document.cookie.indexOf(";", begin);
if (end == -1) {
end = dc.length;
}
}
// because unescape has been deprecated, replaced with decodeURI
//return unescape(dc.substring(begin + prefix.length, end));
return decodeURI(dc.substring(begin + prefix.length, end));
}
function check() {
var myCookie = getCookie("seenpage");
if (myCookie == null) {
// do cookie doesn't exist stuff;
document.cookie = "seenpage=seen";
}
else {
// do cookie exists stuff
location.href = "/game";
}
}
</script>
<div class="center logo">
<a href="http://siontea.com">
<img id="tea" src="image/stc.png">
</a>
</div>
<br/>
<div class="content">
<p>the meme speedrun boards will be moved here under this subdomain<br/>
speed.siontea.com<br/>
<br/><br/>
<a href="game">/game</a>
<br/><br/>
I started this "operation" on 22/2/2021</p>
</div>
</body>
</html>