同步最新版本,并修改成适合自己的
This commit is contained in:
parent
bb8b62b5a6
commit
3360483a27
102
index.html
102
index.html
@ -1,69 +1,39 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="zh-CN">
|
<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" />
|
||||||
|
<link rel="icon" href="%VITE_SITE_LOGO%" />
|
||||||
|
<link rel="apple-touch-icon" href="%VITE_SITE_APPLE_LOGO%" />
|
||||||
|
<link rel="bookmark" href="%VITE_SITE_APPLE_LOGO%" />
|
||||||
|
<link rel="apple-touch-icon-precomposed" sizes="200x200" href="%VITE_SITE_APPLE_LOGO%" />
|
||||||
|
<meta name="description" content="%VITE_SITE_DES%" />
|
||||||
|
<meta name="keywords" content="%VITE_SITE_KEYWORDS%" />
|
||||||
|
<meta name="author" content="%VITE_SITE_ANTHOR%" />
|
||||||
|
<meta name="theme-color" content="#424242" />
|
||||||
|
<title>%VITE_SITE_NAME%</title>
|
||||||
|
<!-- HarmonyOS Sans -->
|
||||||
|
<!-- 本站 CDN 已开启防盗链,非本站域名不可访问,请更改链接为下方内容,否则自定义字体将失效 -->
|
||||||
|
<link rel="stylesheet" href="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" /> -->
|
||||||
|
<!-- 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>
|
||||||
|
|
||||||
<head>
|
<body>
|
||||||
<meta charset="UTF-8" />
|
<!-- 主体内容 -->
|
||||||
<meta http-equiv="Access-Control-Allow-Origin" content="*">
|
<div id="app"></div>
|
||||||
<!-- <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"> -->
|
<!-- noscript -->
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<noscript>
|
||||||
<link rel="icon" href="<%- logo %>">
|
<div style="text-align: center">请开启 JavaScript</div>
|
||||||
<link rel="apple-touch-icon" href="<%- appleLogo %>" />
|
</noscript>
|
||||||
<link rel="bookmark" href="<%- appleLogo %>" />
|
<script type="module" src="/src/main.js"></script>
|
||||||
<link rel="apple-touch-icon-precomposed" sizes="200x200" href="<%- appleLogo %>" />
|
</body>
|
||||||
<meta name="description" content="<%- description %>" />
|
|
||||||
<meta name="keywords" content="<%- keywords %>" />
|
|
||||||
<meta name="author" content="<%- author %>" />
|
|
||||||
<meta name="theme-color" content="#424242" />
|
|
||||||
<title><%- title %></title>
|
|
||||||
<!-- HarmonyOS Sans -->
|
|
||||||
<!-- 本站 CDN 已开启防盗链,非本站域名不可访问,请更改链接为下方内容,否则自定义字体将失效 -->
|
|
||||||
<!-- https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css -->
|
|
||||||
<link rel="stylesheet" href="/loading/regular.css" />
|
|
||||||
<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>
|
|
||||||
<% if (tongji) { %>
|
|
||||||
<!-- 百度统计 -->
|
|
||||||
<script>
|
|
||||||
var _hmt = _hmt || [];
|
|
||||||
(function() {
|
|
||||||
var hm = document.createElement("script");
|
|
||||||
hm.src = "https://hm.baidu.com/hm.js?<%- tongji %>";
|
|
||||||
var s = document.getElementsByTagName("script")[0];
|
|
||||||
s.parentNode.insertBefore(hm, s);
|
|
||||||
})();
|
|
||||||
</script>
|
|
||||||
<% } %>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<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>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<!-- 主体内容 -->
|
|
||||||
<div id="app"></div>
|
|
||||||
<!-- noscript -->
|
|
||||||
<noscript>
|
|
||||||
<div style="text-align: center">请开启 JavaScript</div>
|
|
||||||
</noscript>
|
|
||||||
<script type="module" src="/src/main.js"></script>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
</html>
|
@ -1,9 +1,5 @@
|
|||||||
lockfileVersion: '6.0'
|
lockfileVersion: '6.0'
|
||||||
|
|
||||||
settings:
|
|
||||||
autoInstallPeers: true
|
|
||||||
excludeLinksFromLockfile: false
|
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
'@worstone/vue-aplayer':
|
'@worstone/vue-aplayer':
|
||||||
specifier: ^1.0.6
|
specifier: ^1.0.6
|
||||||
@ -4457,3 +4453,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
settings:
|
||||||
|
autoInstallPeers: true
|
||||||
|
excludeLinksFromLockfile: false
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"icon": "Blog",
|
"icon": "Blog",
|
||||||
"name": "halo博客",
|
"name": "halo2博客",
|
||||||
"link": "https://blog.huangge1199.cn/"
|
"link": "https://blog.huangge1199.cn/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"icon": "Blog",
|
"icon": "Blog",
|
||||||
"name": "wordpress",
|
"name": "halo-plus博客",
|
||||||
"link": "https://site.huangge1199.cn/"
|
"link": "https://halo.huangge1199.cn/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"icon": "Blog",
|
"icon": "Blog",
|
||||||
@ -15,18 +15,18 @@
|
|||||||
"link": "https://hexo.huangge1199.cn/"
|
"link": "https://hexo.huangge1199.cn/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"icon": "Cloud",
|
"icon": "Video",
|
||||||
"name": "网盘",
|
"name": "视频网站",
|
||||||
"link": "https://pan.huangge1199.cn/"
|
"link": "https://cms.huangge1199.cn/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"icon": "CompactDisc",
|
"icon": "LaptopCode",
|
||||||
"name": "视频",
|
"name": "友链站点监测",
|
||||||
"link": "http://s2.s100.vip:7911/"
|
"link": "https://console.huangge1199.cn/status/friends"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"icon": "Compass",
|
"icon": "Book",
|
||||||
"name": "小说",
|
"name": "小说网站",
|
||||||
"link": "http://s2.s100.vip:33376/"
|
"link": "https://hexo.huangge1199.cn/"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -43,7 +43,7 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { Icon } from "@vicons/utils";
|
import { Icon } from "@vicons/utils";
|
||||||
// 可前往 https://www.xicons.org 自行挑选并在此处引入
|
// 可前往 https://www.xicons.org 自行挑选并在此处引入
|
||||||
import { Link, Blog, CompactDisc, Cloud, Compass, Book, Fire, LaptopCode } from "@vicons/fa"; // 注意使用正确的类别
|
import { Link, Blog, CompactDisc, Cloud, Compass, Book, Fire, LaptopCode, Video } from "@vicons/fa"; // 注意使用正确的类别
|
||||||
import { mainStore } from "@/store";
|
import { mainStore } from "@/store";
|
||||||
import { Swiper, SwiperSlide } from "swiper/vue";
|
import { Swiper, SwiperSlide } from "swiper/vue";
|
||||||
import { Pagination, Mousewheel } from "swiper";
|
import { Pagination, Mousewheel } from "swiper";
|
||||||
@ -70,6 +70,7 @@ const siteIcon = {
|
|||||||
Book,
|
Book,
|
||||||
Fire,
|
Fire,
|
||||||
LaptopCode,
|
LaptopCode,
|
||||||
|
Video,
|
||||||
};
|
};
|
||||||
|
|
||||||
// 链接跳转
|
// 链接跳转
|
||||||
|
Loading…
Reference in New Issue
Block a user