-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.94 KB
/
Copy pathindex.html
File metadata and controls
39 lines (35 loc) · 1.94 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
<!doctype html>
<html lang="en" class="dark">
<head>
<script>
(function () {
var stored = localStorage.getItem('theme');
var dark = stored ? stored === 'dark' : !window.matchMedia('(prefers-color-scheme: light)').matches;
document.documentElement.classList.toggle('dark', dark);
})();
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="alternate" type="application/rss+xml" title="leodeng.dev blog" href="/rss.xml" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>leodeng.dev</title>
<meta name="description" content="Leo's corner of the internet. Projects, blog posts, and whatever I'm building lately." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://leodeng.dev" />
<meta property="og:title" content="leodeng.dev" />
<meta property="og:description" content="Leo's corner of the internet. Projects, blog posts, and whatever I'm building lately." />
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@Leodeng14" />
<meta name="twitter:title" content="leodeng.dev" />
<meta name="twitter:description" content="Leo's corner of the internet. Projects, blog posts, and whatever I'm building lately." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet" />
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>