-
Notifications
You must be signed in to change notification settings - Fork 119
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (81 loc) · 2.98 KB
/
index.html
File metadata and controls
82 lines (81 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Starting Menu</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<!-- Bidvertiser2103197 -->
<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>
<div id="ntv_2103197"></div>
<script type="text/javascript">
(function(d) {
var params =
{
bvwidgetid: "ntv_2103197",
bvlinksownid: 2103197,
rows: 1,
cols: 5,
textpos: "right",
imagewidth: 150,
mobilecols: 2,
cb: (new Date()).getTime()
};
params.bvwidgetid = "ntv_2103197" + params.cb;
d.getElementById("ntv_2103197").id = params.bvwidgetid;
var qs = Object.keys(params).reduce(function(a, k){ a.push(k + '=' + encodeURIComponent(params[k])); return a},[]).join(String.fromCharCode(38));
var s = d.createElement('script'); s.type='text/javascript';s.async=true;
var p = 'https:' == document.location.protocol ? 'https' : 'http';
s.src = p + "://cdn.hyperpromote.com/bidvertiser/tags/active/bdvws.js?" + qs;
d.getElementById(params.bvwidgetid).appendChild(s);
})(document);
</script>
<div id="main">
<main>
<h1>Welcome to DotGUI!</h1>
<div id="games">
<p>Click here to continue: (If you are in about:blank, click proceed.)</p>
<button type="button" class="nav-btn" onclick="location.href='/start.html'">Proceed</button>
<br>
<h2>If you can't access DotGUI normally:</h2>
<button type="button" class="nav-btn" onclick="location.href='/launch.html'">via About:Blank (very reliable)</button>
<button type="button" class="nav-btn" onclick="location.href='/blob.html'">via Blob: page (somewhat reliable)</button>
<button type="button" class="nav-btn" onclick="location.href='/dataurl.html'">via DataURL (unreliable)</button>
</div>
<br>
<p>You can also <a href="https://github.com/DotLYHiyou/DotGUI?tab=readme-ov-file#for-hosts">self-host your own links!</a></p>
</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 {
favicon.href = '/favicon.ico';
}
})();
</script>
<footer>
</footer>
</html>