-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (35 loc) · 1.61 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.61 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
40
41
42
43
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title and meta tags will be automatically replaced by build plugin from src/config/html.json -->
<title>{{SITE_TITLE}}</title>
<meta name="description" content="{{SITE_DESCRIPTION}}">
<meta name="keywords" content="{{SITE_KEYWORDS}}">
<meta name="author" content="{{SITE_AUTHOR}}">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="{{SITE_URL}}">
<meta property="og:title" content="{{SITE_TITLE}}">
<meta property="og:description" content="{{SITE_DESCRIPTION}}">
<meta property="og:image" content="{{SITE_IMAGE}}">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="{{SITE_URL}}">
<meta property="twitter:title" content="{{SITE_TITLE}}">
<meta property="twitter:description" content="{{SITE_DESCRIPTION}}">
<meta property="twitter:image" content="{{SITE_IMAGE}}">
<link rel="icon" type="image/x-icon" href="{{SITE_FAVICON}}">
<link rel="apple-touch-icon" href="{{SITE_APPLE_TOUCH_ICON}}">
<meta name="theme-color" content="{{THEME_COLOR_LIGHT}}" media="(prefers-color-scheme: light)">
<meta name="theme-color" content="{{THEME_COLOR_DARK}}" media="(prefers-color-scheme: dark)">
<!-- Feed Auto-Discovery -->
{{FEED_LINKS}}
<script src="https://kit.fontawesome.com/a52744a7a3.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>