-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (32 loc) · 1.54 KB
/
index.html
File metadata and controls
36 lines (32 loc) · 1.54 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="description" content="Chatlog Session - 基于 Chatlog API 的微信聊天记录查看器">
<meta name="keywords" content="chatlog, wechat, chat-history, vue3">
<meta name="author" content="Chatlog Session Team">
<!-- PWA Meta Tags -->
<meta name="application-name" content="Chatlog Session">
<meta name="apple-mobile-web-app-status-bar-style" content="default">
<meta name="apple-mobile-web-app-title" content="Chatlog">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#409eff">
<!-- PWA Manifest -->
<link rel="manifest" href="/manifest.json">
<!-- Apple Touch Icons -->
<!-- Favicon -->
<title>Chatlog Session</title>
<link rel="icon" type="image/png" sizes="196x196" href="/icons/favicon-196.png">
<meta name="msapplication-square70x70logo" content="/icons/mstile-icon-128.png">
<meta name="msapplication-square150x150logo" content="/icons/mstile-icon-270.png">
<meta name="msapplication-square310x310logo" content="/icons/mstile-icon-558.png">
<meta name="msapplication-wide310x150logo" content="/icons/mstile-icon-558-270.png">
<link rel="apple-touch-icon" href="/icons/apple-icon-180.png">
<meta name="apple-mobile-web-app-capable" content="yes">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>