-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (49 loc) · 2.25 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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<title>tingyuan</title>
<meta name="description" content="庭院的个人网站" />
<!-- <meta http-equiv="Content-Security-Policy" content="script-src 'self'; style-src 'self' 'unsafe-inline'"> -->
<link rel="apple-touch-icon" href="/icons/icon-192x192.png" sizes="192x192" />
<link rel="mask-icon" href="/icons/icon-512x512.png" color="#FFFFFF" />
<meta name="theme-color" content="#fffafa" />
<meta name="referrer" content="no-referrer" />
<link rel="preconnect" crossorigin="anonymous" href="https://favicone.com" />
<link rel="preconnect" crossorigin="anonymous" href="https://img5.mtime.cn" />
<link rel="preconnect" crossorigin="anonymous" href="https://y.qq.com" />
<link rel="preconnect" crossorigin="anonymous" href="https://image11.m1905.cn" />
<link rel="preconnect" crossorigin="anonymous" href="https://code.iconify.design" />
<link rel="preconnect" crossorigin="anonymous" href="https://api.iconify.design" />
<style>
:root {
--theme-color: #fffafa;
}
.shiki,
.shiki span {
color: var(--shiki-dark) !important;
background-color: var(--shiki-dark-bg) !important;
/* Optional, if you also want font styles */
font-style: var(--shiki-dark-font-style) !important;
font-weight: var(--shiki-dark-font-weight) !important;
text-decoration: var(--shiki-dark-text-decoration) !important;
}
</style>
</head>
<body
class="h-full w-full bg-white bg-[radial-gradient(100%_50%_at_50%_0%,rgba(0,163,255,0.13)_0,rgba(0,163,255,0)_50%,rgba(0,163,255,0)_100%)] dark:bg-neutral-950 dark:bg-[radial-gradient(ellipse_80%_80%_at_50%_-20%,rgba(120,119,198,0.3),rgba(255,255,255,0))]"
>
<noscript>
<p>请开启JavaScript</p>
</noscript>
<div id="app">
<h2 class="p-32 text-3xl dark:text-white">❄️ Loading...</h2>
</div>
<script nomodule>
window.alert('请使用最新的Chrome, Edge, Firefox浏览器访问')
</script>
<script type="module" src="/src/main.ts"></script>
</body>
</html>