docs(pages): 增加仓库信息页 /info/

2. feat(config): banner 使用 WebP 格式图片
3. style(config): search 搜索条长度固定
4. style(profile): 将个人档案 profile 中的提交记录改为 /info/
5. chore(profile): 将 profile 电子邮箱地址改为 admin@adclosenn.top
6. style(config): 删除了顶部 Nav 的 主页
7. docs(pages): about 关于页面更新 2025/8/16
8. style(css): 加入专对于代码框的字体 JetBrainsMono-VF
9. fix(config): 解决misans.astro 文件中的解释 description 被定义为了 I18nKey.about 关于 的问题
10. fix(config): 修复网易云音乐音乐外链挂件未使用 https 的问题
This commit is contained in:
Ad-closeNN
2025-08-16 12:29:54 +08:00
parent 704345b8fa
commit 26365e08b4
11 changed files with 214 additions and 13 deletions
+5 -4
View File
@@ -65,7 +65,7 @@ const isSunday = new Date().getDay() === 0;
<div class="text-center text-sm text-neutral-500 dark:text-neutral-400 mt-3 pt-3 border-t border-neutral-200 dark:border-neutral-700">
<div class="flex items-center justify-center gap-1">
<Icon name="ic:baseline-commit" class="text-base"></Icon>
<span><a id="github-commit-link" href="#" target="_blank">
<span><a id="github-commit-link" href="#">
<span id="github-commit">加载中...</span></a></span>
</div>
@@ -73,12 +73,12 @@ const isSunday = new Date().getDay() === 0;
<!-- 星期日 -->
{ isSunday &&
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=250 height=86 src="//music.163.com/outchain/player?type=2&id=2155423467&auto=0&height=66"></iframe>
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=250 height=86 src="https://music.163.com/outchain/player?type=2&id=2155423467&auto=0&height=66"></iframe>
}
<!-- 其他日 -->
{ !isSunday &&
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=250 height=86 src="//music.163.com/outchain/player?type=2&id=2608813264&auto=0&height=66"></iframe>
<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=250 height=86 src="https://music.163.com/outchain/player?type=2&id=2608813264&auto=0&height=66"></iframe>
}
</div>
</div>
@@ -192,7 +192,8 @@ fetch("https://v1.hitokoto.cn")
if (link){
const gurl = "https://github.com/Ad-closeNN/blog-fuwari/commit/"+Data.sha;
// const gurl = "https://github.com/Ad-closeNN/blog-fuwari/commit/"+Data.sha;
const gurl = "/info/";
link.href = gurl;
link.title = "("+Data.commit.committer.date + ")" + " " + Data.commit.message;
}