-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
46 lines (46 loc) · 1.36 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<style>
.precedence-dark {
width: 100%;
height: 100vh;
background: linear-gradient(
158.17deg,
#0c101a -1.94%,
#202530 -1.93%,
#141821 102.24%
);
color: #626a76;
}
</style>
<script>
const isDarkMode = localStorage.getItem("darkMode") === "true";
if (isDarkMode) document.documentElement.classList.add("precedence-dark");
</script>
<link rel="icon" href="/icon.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta
name="description"
content="筑波大学生専用の時間割アプリTwin:te(ついんて)です"
/>
<meta property="og:title" content="Twin:te" />
<meta property="og:type" content="summary_large_image" />
<meta property="og:image" content="https://www.twinte.net/ogp.jpg" />
<meta
property="og:description"
content="筑波大学生専用の時間割アプリTwin:te(ついんて)です"
/>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@te_twin" />
<title>Twin:te</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/ui/main.ts"></script>
</body>
</html>