2021-09-25 14:57:18 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-CN">
|
|
|
|
|
|
|
|
<head>
|
2022-11-15 14:19:29 +00:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta http-equiv="Access-Control-Allow-Origin" content="*">
|
2023-02-14 01:01:51 +00:00
|
|
|
<!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> -->
|
2022-11-15 14:19:29 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2023-02-16 02:57:30 +00:00
|
|
|
<meta name="description" content="<%- description %>" />
|
|
|
|
<meta name="keywords" content="<%- keywords %>" />
|
|
|
|
<meta name="author" content="<%- author %>" />
|
2023-01-15 09:47:35 +00:00
|
|
|
<meta name="theme-color" content="#424242" />
|
2022-11-15 14:19:29 +00:00
|
|
|
<title><%- title %></title>
|
2023-01-15 05:20:24 +00:00
|
|
|
<!-- HarmonyOS Sans -->
|
|
|
|
<!-- 本站 CDN 已开启防盗链,非本站域名不可访问,请更改链接为下方内容,否则自定义字体将失效 -->
|
|
|
|
<!-- https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css -->
|
|
|
|
<link rel="stylesheet" href="https://cdn.imsyy.top/gh/imsyy/file/font/HarmonyOS_Sans/regular.min.css" />
|
2022-11-15 14:19:29 +00:00
|
|
|
<link rel="icon" href="/images/icon/favicon.ico">
|
|
|
|
<link rel="apple-touch-icon" href="/images/icon/apple-touch-icon.png">
|
|
|
|
<link rel="stylesheet" href="/loading/loading.min.css">
|
|
|
|
<!-- 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>
|
2023-02-16 02:57:30 +00:00
|
|
|
<% if (tongji) { %>
|
2023-01-30 03:41:27 +00:00
|
|
|
<!-- 百度统计 -->
|
|
|
|
<script>
|
|
|
|
var _hmt = _hmt || [];
|
|
|
|
(function () {
|
|
|
|
var hm = document.createElement("script");
|
2023-02-16 02:57:30 +00:00
|
|
|
hm.src = "https://hm.baidu.com/hm.js?<%- tongji %>";
|
2023-01-30 03:41:27 +00:00
|
|
|
var s = document.getElementsByTagName("script")[0];
|
|
|
|
s.parentNode.insertBefore(hm, s);
|
|
|
|
})();
|
|
|
|
</script>
|
2023-02-16 02:57:30 +00:00
|
|
|
<% } %>
|
2021-09-25 14:57:18 +00:00
|
|
|
</head>
|
|
|
|
|
2022-11-15 14:19:29 +00:00
|
|
|
<body class="loading">
|
|
|
|
<!--加载动画-->
|
|
|
|
<div id="loading-box">
|
|
|
|
<div class="loading-left-bg"></div>
|
|
|
|
<div class="loading-right-bg"></div>
|
|
|
|
<div class="spinner-box">
|
|
|
|
<div class="loader">
|
|
|
|
<div class="inner one"></div>
|
|
|
|
<div class="inner two"></div>
|
|
|
|
<div class="inner three"></div>
|
|
|
|
</div>
|
|
|
|
<div class="loading-word">
|
|
|
|
<p class="loading-title" id="loading-title"><%- title %></p>
|
|
|
|
<span id="loading-text">加载中</span>
|
|
|
|
</div>
|
2021-09-25 14:57:18 +00:00
|
|
|
</div>
|
2022-11-15 14:19:29 +00:00
|
|
|
</div>
|
|
|
|
<!-- 主体内容 -->
|
|
|
|
<div id="app"></div>
|
|
|
|
<!-- noscript -->
|
|
|
|
<noscript>
|
|
|
|
<div style="text-align: center">请开启 JavaScript</div>
|
|
|
|
</noscript>
|
|
|
|
<script type="module" src="/src/main.js"></script>
|
2021-09-25 14:57:18 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|