forked from the-organization-selection/therealwebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (81 loc) · 3.16 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 class="sl-theme-dark" lang="en">
<head>
<!-- initialize theme vars
https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff -->
<!-- initialize externals -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src=" https://cdn.jsdelivr.net/npm/[email protected]/dist/js.cookie.min.js "></script>
<!-- Google AdSense -->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9055055772658086"
crossorigin="anonymous"></script>
<!-- initialize my stuff -->
<script>
window.si = window.si || function () { (window.siq = window.siq || []).push(arguments); };
</script>
<script defer src="/_vercel/speed-insights/script.js"></script>
<script src="/js/all.js"></script>
<script src="/js/main.js"></script>
<script src="/js/widget.js"></script>
<script src="/js/themes.js"></script>
<script src="/js/randomquote.js"></script>
<link rel="stylesheet" href="/style.css" />
<!-- seo + other things -->
<title>Hello :></title>
<link rel="icon" href="/favicon.ico" />
<meta name="google-adsense-account" content="ca-pub-9055055772658086">
<meta name="viewport" content="width=device-width,initial-scale=1" />
</head>
<alerts>
</alerts>
<body id="noscroll">
<header>
<a href="/index.html">Home</a>
<a href="/bookmarklets.html">Bookmarklets</a>
<a href="/projects.html">Games</a>
<a href="/apps.html">Apps</a>
<a href="/settings.html">Settings</a>
<a id="blank" href="#">Open Blank</a>
<div id="status">
<p id="time">00:00 AM</p>
</div>
</header>
<main id="main" class="noscroll">
<b style="font-weight:1000px;"><h1 class="chan">The Store Selection</h1></b>
<noscript>enable javascript if you want the games to actually load</noscript>
<p id="randomquote">better thank skysthelimitt for this unblocked website</p>
<div class="samerow">
<div class="img-container">
<a href="https://patreon.com/selenitecc"><img src="img/patreon.svg"></a>
</div>
<div class="img-container">
<a href="projects.html"><img src="img/games.svg"></a>
</div>
<div class="img-container">
<a href="https://discord.gg/7jyufnwJNf"><img src="img/discord.svg"></a>
</div>
</div>
<BR>
</main>
<script>
document.addEventListener("DOMContentLoaded", function () {
const adContainers = document.querySelectorAll("[id=adcontainer]");
if (adContainers.length > 0) {
for (let i = 0; i < adContainers.length; i++) {
if (Math.random() < 0.75 || localStorage.getItem("selenite.adblock") === "true") {
adContainers[i].innerHTML = "";
}
}
}
});
</script>
<footer class="noscroll">
<a href="https://codeberg.org/skysthelimitt/selenite">Source</a>
<a href="https://discord.gg/7jyufnwJNf">Discord</a>
<a href="/suggest.html">Suggestions & Bugs</a>
<a href="/contact.html">Contact</a>
<a href="/support.html">Donate</a>
<a href="/about.html">About</a>
</footer>
</body>
</html>