-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (44 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="description" content="我的个人博客,写点想写的">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:locale" content="zh_CN">
<link rel="alternate" href="/feed.xml" title="llyのblog" type="application/atom+xml">
<link rel="icon" href="/favicon.ico">
<link rel="icon" href="/favicon-32x32.png" type="image/png" sizes="32x32">
<link rel="icon" href="/favicon-16x16.png" type="image/png" sizes="16x16">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<meta name="theme-color" content="#FFFFFF" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="#000000" media="(prefers-color-scheme: dark)">
<link rel="stylesheet" href="/katex/katex.min.css" media="print" onload="this.media='all'">
<title>llyのblog</title>
<script type="text/javascript">
// Single Page Apps for GitHub Pages
// MIT License
// https://github.com/rafgraph/spa-github-pages
(function(l) {
if (l.search[1] === '/') {
const decoded = l.search.slice(1).split('&').map((s) => {
return s.replace(/~and~/g, '&')
}).join('?')
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + decoded + l.hash)
}
}(window.location))
</script>
<script>
(function () {
const prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
const setting = localStorage.getItem('vueuse-color-scheme') || 'auto'
if (setting === 'dark' || (prefersDark && setting !== 'light'))
document.documentElement.classList.toggle('dark', true)
})()
</script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>