-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (83 loc) · 2.63 KB
/
Copy pathindex.html
File metadata and controls
90 lines (83 loc) · 2.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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>
<style>
/*
ダークモード時のフラッシュを防ぐために、
テーマ読み込み前はcolor-schemeごとのbackground primaryを表示する
*/
body {
color-scheme: light dark;
background-color: Canvas;
}
</style>
<style>
/*
WebKit で発生する contain: strict による不具合の回避策
WebKit の場合は App.vue にて "inline-size layout paint style" を指定する
cf. https://bugs.webkit.org/show_bug.cgi?id=297186
*/
body {
--contain-strict: strict;
}
</style>
<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="/new-relic-{hash}.js"></script> -->
<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="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="dropdown-suggester-popup"></div>
<div id="message-menu-popup"></div>
<div id="popup-header-relation"></div>
<div id="popup-navigator"></div>
<div id="scaled-stamp-popup"></div>
<div id="services-popup"></div>
<div id="stamp-picker-popup"></div>
<script type="module" src="/@/main.ts"></script>
</body>
</html>