-
Notifications
You must be signed in to change notification settings - Fork 152
Expand file tree
/
Copy pathstart.html
More file actions
87 lines (87 loc) · 4.2 KB
/
Copy pathstart.html
File metadata and controls
87 lines (87 loc) · 4.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>DotGUI</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="styles.css" />
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q919W0VJ1S"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q919W0VJ1S');
</script>
</head>
<body>
<nav>
<button type="button" class="nav-btn" aria-current="page" onclick="location.href='/start.html'">
<img src="media/nav-buttons/home.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="window.location.href='/select.html'">
<img src="media/nav-buttons/game.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/search.html'">
<img src="media/nav-buttons/search.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/tools.html'">
<img src="media/nav-buttons/tools.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/settings.html'">
<img src="media/nav-buttons/settings.svg" width="40px" height="40px">
</button>
<button type="button" class="nav-btn" onclick="location.href='/disclaimer.html'">
<img src="media/nav-buttons/disclaimer.svg" width="40px" height="40px">
</button>
</nav>
<div id="main">
<main>
<h1>DotGUI | Back to school patch </h1>
<h2>My will to continue working on DotGUI is dwindling yall 😔</h2>
<h2>Search temporarily unavailable rn, working on getting it back up for yall,</h2>
<h2>js know that I'm busy now and can't focus on it as much as I'd like</h2>
<p id="random-text" style="font-size:1.2em; margin:20px 0;"></p>
<p>Join our <a onclick=window.location.href="https://discord.com/invite/U8tT8AazXb">community server</a> to report problems and get more links. Make sure to star DotGUI on GitHub if you fork it!</p>
<script>
const texts = [
'"Work on DotGUI, or quit and play Roblox?" - DotLYHiyou, probably',
"Did you know? DotGUI used to be the Zenithub Rework Update, but then I thought it through and realized throwing a rebrand in would be cool. Yeah, so much for being cool...",
"If I were to remake DotGUI, I would make sure a search would be available on day one.",
"One of my biggest regrets to date is not staying on the earliest branding, BlackoutGames. Idk man, smth about OG BlackoutGames hit hard.",
"Militant is the best TDS starter tower when you start the game. Change my mind.",
"Who needs global announcements that very easily get hijacked when you have these?",
"PLEASE stop using the request form for problems.",
"There is like 5-6 people who prob still check the community server. Please join it.",
"DotGUI is so tuff",
];
document.getElementById("random-text").textContent = texts[Math.floor(Math.random() * texts.length)];
</script>
</main>
</div>
</body>
<script>
(function() {
const value = localStorage.getItem('tabCloaker') || 'default';
const favicon = document.querySelector("link[rel~='icon']") || (() => {
const link = document.createElement('link');
link.rel = 'icon';
document.head.appendChild(link);
return link;
})();
if (value === 'google') {
document.title = 'Google';
favicon.href = 'https://www.google.com/favicon.ico';
} else if (value === 'vocab') {
document.title = 'My Learning | Vocabulary.com';
favicon.href = 'https://www.vocabulary.com/favicon.ico';
} else {
document.title = 'DotGUI';
favicon.href = '/favicon.ico';
}
})();
</script>
<footer>
<p>Made by <a onclick="window.location.href='https://guns.lol/dotlyhiyou'">DotLYHiyou</a> on Github. Visit my guns.lol for more on me!</p>
</footer>
</html>