-
-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 2.05 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terbium</title>
<link rel="manifest" href="/manifest.json" />
<meta name="title" content="Terbium" />
<meta name="description" content="The next generation of Terbium. built to last." />
<meta name="theme-color" content="#D16FFF" />
<meta property="og:image" content="/tb.svg" />
<meta name="google-adsense-account" content="ca-pub-2875368391887289" />
<script src="/tfs/tfs.js"></script>
<script>
(async () => {
const handle = await navigator.storage.getDirectory();
window.tfs = new window.tfs(handle)
if (typeof window.tb === "undefined") window.tb = {};
if (typeof window.tb.fs === "undefined" && typeof window.tb !== "undefined") {
console.log("[FS] File System Ready");
window.tb.fs = window.tfs.fs;
window.tb.buffer = window.tfs.buffer;
window.tb.sh = window.tfs.shell;
}
if (localStorage.getItem("eruda")) {
const erudaScript = document.createElement("script");
erudaScript.src = "https://cdn.jsdelivr.net/npm/eruda";
erudaScript.onload = () => {
window.eruda.init();
};
document.head.appendChild(erudaScript);
}
})();
</script>
</head>
<body>
<div id="root" class="flex flex-col h-full bg-[#0e0e0e] overflow-hidden"></div>
<script src="/scram/scramjet.all.js"></script>
<script type="module" src="/src/main.tsx"></script>
<script type="module" src="/src/init/index.ts"></script>
<script src="assets/libs/filer.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1RW33JJQS2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1RW33JJQS2');
</script>
</body>
</html>