-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (62 loc) · 2.18 KB
/
index.html
File metadata and controls
71 lines (62 loc) · 2.18 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
<!doctype html>
<html lang="en" class="bg-base-200 overscroll-none">
<head>
<script>
if (
window.location.protocol.startsWith("http") &&
[
"iris.to",
"beta.iris.to",
"iris-client.irisapp.workers.dev",
"127.0.0.1",
"localhost",
].includes(window.location.hostname)
) {
document.write('<base href="/">')
}
</script>
<!-- Title -->
<title></title>
<!-- Links -->
<link rel="icon" type="image/svg+xml" href="./favicon.png" />
<link rel="canonical" href="" />
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
/>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="theme-color" content="" />
<link rel="apple-touch-icon" href="./img/apple-touch-icon.png" />
<!-- Opengraph -->
<meta property="og:type" content="website" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<!-- Facebook Meta Tags -->
<meta property="og:url" content="" />
<meta property="og:type" content="website" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />
<meta property="og:image" content="" />
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta property="twitter:domain" content="" />
<meta property="twitter:url" content="" />
<meta name="twitter:title" content="" />
<meta name="twitter:description" content="" />
<meta name="twitter:image" content="" />
<!-- robots -->
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<!-- Manifest -->
<link rel="manifest" href="./manifest.json" />
</head>
<body>
<div id="root" class="flex justify-center h-full bg-base-200"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>