-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
41 lines (39 loc) · 1.62 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta http-equiv="Access-Control-Allow-Origin" content="*">
<!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="%VITE_SITE_DES%" />
<meta name="keywords" content="%VITE_SITE_KEYWORDS%" />
<meta name="author" content="%VITE_SITE_AUTHOR%" />
<meta name="theme-color" content="#424242" />
<title>%VITE_SITE_NAME%</title>
<!-- HarmonyOS Sans -->
<link type="text/css" rel="stylesheet" href="/css/font/HarmonyOS_Regular.css" />
<!-- Playball -->
<link type="text/css" rel="stylesheet" href="/css/font/Playball.css" />
<!-- LongCang -->
<link type="text/css" rel="stylesheet" href="/css/font/LongCang.css" />
<!-- UnidreamLED -->
<link type="text/css" rel="stylesheet" href="/css/font/UnidreamLED.css" />
<!-- Icon -->
<link rel="shortcut icon" href="%VITE_SITE_ICON%" />
<link rel="apple-touch-icon" href="%VITE_SITE_ICON_APPLE%" />
<!-- IE Out -->
<script>
if ( /*@cc_on!@*/ false || (!!window.MSInputMethodContext && !!document.documentMode))
window.location.href = "https://support.dmeng.net/upgrade-your-browser.html?referrer=" + encodeURIComponent(window.location.href);
</script>
</head>
<body>
<!-- 主体内容 -->
<div id="app"></div>
<!-- noscript -->
<noscript>
<div style="text-align: center">请开启 JavaScript</div>
</noscript>
<script type="module" src="/src/main.js"></script>
</body>
</html>