-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.39 KB
/
Copy pathindex.html
File metadata and controls
32 lines (32 loc) · 1.39 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<title>Simple NAV</title>
<link rel="icon" type="image/x-icon" href="/img/SNAV/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/img/SNAV/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/img/SNAV/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/img/SNAV/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Open Graph 协议元数据 -->
<meta property="og:title" content="Simple NAV|少即是多">
<meta property="og:type" content="website">
<meta property="og:image" content="/og-image.webp">
<meta property="og:url" content="/">
<meta property="og:description" content="简洁实用的导航网站,少即是多">
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
/* 确保黑暗模式样式优先 */
.dark {
color-scheme: dark;
}
</style>
</head>
<body class="bg-gray-100 dark:bg-gray-900 text-gray-800 dark:text-gray-200">
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>