-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.html
64 lines (60 loc) · 1.9 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
<meta http-equiv="content-language" content="ja" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no,viewport-fit=cover"
/>
<title>traQ</title>
<link href="/fonts/fonts.css" rel="stylesheet" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap"
rel="stylesheet"
/>
<script src="/config.js"></script>
<script src="/defaultTheme.js"></script>
<style id="theme-style"></style>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/img/icons/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/img/icons/favicon-16x16.png"
/>
<meta name="theme-color" content="#0D67EA" />
<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="traQ" />
<link rel="apple-touch-icon" href="/img/icons/apple-touch-icon.png" />
<link
rel="mask-icon"
href="/img/icons/safari-pinned-tab.svg"
color="#0D67EA"
/>
<meta name="msapplication-TileColor" content="#0D67EA" />
<meta name="application-name" content="traQ" />
</head>
<body>
<noscript>
<strong>
We're sorry but traQ doesn't work properly without JavaScript enabled.
Please enable it to continue.
</strong>
</noscript>
<div id="app"></div>
<div id="message-menu-popup"></div>
<div id="stamp-picker-popup"></div>
<div id="dropdown-suggester-popup"></div>
<div id="popup-navigator"></div>
<div id="popup-header-relation"></div>
<script type="module" src="/@/main.ts"></script>
</body>
</html>