-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (47 loc) · 2.25 KB
/
index.html
File metadata and controls
54 lines (47 loc) · 2.25 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
<!doctype html>
<html lang="ja">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# website: http://ogp.me/ns/website#">
<title>eHagaki</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="投稿専用Nostrクライアント。デバイス上で画像・動画を圧縮してからアップロード。エディター内に直接コンテンツを表示。" />
<meta name="theme-color" content="#2b664b" />
<meta property="og:site_name" content="eHagaki" />
<meta property="og:title" content="eHagaki" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://lokuyow.github.io/ehagaki/" />
<meta property="og:image" content="https://lokuyow.github.io/ehagaki/ehagaki_ogp.webp" />
<meta property="og:description" content="投稿専用Nostrクライアント。デバイス上で画像・動画を圧縮してからアップロード。エディター内に直接コンテンツを表示" />
<meta property="og:locale" content="ja_JP" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@Lokuyow" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-title" content="eHagaki" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<link rel="icon" href="/favicon.ico" sizes="48x48">
<link rel="icon" href="/ehagaki_icon.svg" sizes="any" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head>
<body ontouchstart="">
<script>
(function () {
var saved = localStorage.getItem('darkMode');
var isDark = saved !== null
? saved === 'true'
: window.matchMedia('(prefers-color-scheme: dark)').matches;
var root = document.documentElement;
if (isDark) {
root.classList.add('dark');
root.style.colorScheme = 'dark';
} else {
root.classList.add('light');
root.style.colorScheme = 'light';
}
})();
</script>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>