2024-01-30 22:12:44 +08:00
|
|
|
<!doctype html>
|
2021-12-08 23:43:52 +08:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
2024-01-15 21:10:41 +08:00
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
<link rel="icon" type="image/webp" href="/logo.webp" />
|
|
|
|
<link rel="manifest" href="/site.webmanifest" />
|
2022-12-13 23:34:38 +08:00
|
|
|
<meta name="theme-color" media="(prefers-color-scheme: light)" content="#f4f4f5" />
|
2024-01-04 21:11:22 +08:00
|
|
|
<meta name="theme-color" media="(prefers-color-scheme: dark)" content="#18181b" />
|
2022-07-29 19:52:16 +08:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
|
2023-12-29 08:28:17 +08:00
|
|
|
<!-- memos.metadata.head -->
|
2023-12-29 08:19:32 +08:00
|
|
|
<title>Memos</title>
|
2024-01-16 22:53:45 +08:00
|
|
|
<script>
|
|
|
|
// Prevent flash of light mode.
|
|
|
|
const appearance = localStorage.getItem("appearance");
|
|
|
|
if (appearance === `"dark"`) {
|
|
|
|
document.documentElement.classList.add("dark");
|
|
|
|
}
|
|
|
|
</script>
|
2021-12-08 23:43:52 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="root"></div>
|
|
|
|
<script type="module" src="/src/main.tsx"></script>
|
2023-12-29 08:28:17 +08:00
|
|
|
<!-- memos.metadata.body -->
|
2021-12-08 23:43:52 +08:00
|
|
|
</body>
|
|
|
|
</html>
|