-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
49 lines (49 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en" class="no-theme">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cumulonimbus</title>
<meta name="title" content="Cumulonimbus" />
<meta name="og:title" content="Cumulonimbus" />
<meta name="description" content="The funny cloud platform." />
<meta name="og:description" content="The funny cloud platform." />
<meta name="keywords" content="cloud, funny, cumulonimbus" />
<meta name="image" content="/Cumulonimbus.webp" />
<meta name="og:image" content="/Cumulonimbus.webp" />
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-152x152.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="apple-mobile-web-app-title" content="Cumulonimbus" />
<meta
name="msapplication-TileImage"
content="/icons/msapplication-icon-144x144.png"
/>
<meta name="msapplication-TileColor" content="#212121" />
<meta
name="theme-color"
media="(prefers-color-scheme: light)"
content="#08f1fd"
/>
<meta
name="theme-color"
media="(prefers-color-scheme: dark)"
content="#212121"
/>
<link rel="icon" sizes="16x16" href="/icons/favicon-16x16.png" />
<link rel="icon" sizes="32x32" href="/icons/favicon-32x32.png" />
<script type="module" src="/src/main.ts"></script>
<style>
html.no-theme * {
transition: all 0s;
}
</style>
</head>
<body>
<noscript>
Whoops! It looks like you have JavaScript disabled. Cumulonimbus requires
JavaScript in order to function properly.
</noscript>
</body>
</html>