-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
45 lines (43 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head prefix="og: https://ogp.me/ns#">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<meta name="author" content="mimonelu">
<meta name="description" content="Klearsky is a web client for Bluesky/AT Protocol.">
<meta name="format-detection" content="telephone=no">
<meta name="referrer" content="origin-when-cross-origin">
<meta name="robots" content="index,follow">
<meta property="og:title" content="Klearsky" />
<meta property="og:description" content="Klearsky is a web client for Bluesky/AT Protocol." />
<meta property="og:url" content="https://klearsky.pages.dev/" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://klearsky.pages.dev/img/ogp.png" />
<title>Klearsky - The Bluesky Client</title>
<!-- ページ背景色の先行適用 -->
<style>
body {
background-color: #ffffff;
}
@media (prefers-color-scheme: dark) {
body {
background-color: #000000;
}
}
</style>
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
<link rel="manifest" href="/manifest.webmanifest">
<link rel="preconnect dns-prefetch" href="https://bsky.app">
<link rel="preconnect dns-prefetch" href="https://bsky.network">
<link rel="preconnect dns-prefetch" href="https://bsky.social">
<link rel="preconnect dns-prefetch" href="https://cardyb.bsky.app">
<link rel="preconnect dns-prefetch" href="https://cdn.bsky.app">
<link rel="preconnect dns-prefetch" href="https://video.bsky.app">
<link rel="preconnect dns-prefetch" href="https://video.cdn.bsky.app">
<link rel="preconnect dns-prefetch" href="https://plc.directory">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>