Compare commits
7 Commits
309cce14ab
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 69770c635b | |||
| 23398da9db | |||
| 98ed0b6ad4 | |||
| c9c71955c0 | |||
| 52dbab5fa7 | |||
| ced2361985 | |||
| 9c8564e14a |
@@ -41,14 +41,11 @@ if (footerConfig.enable) {
|
||||
{customFooterHtml && (
|
||||
<div class="mb-2" set:html={customFooterHtml}></div>
|
||||
)}
|
||||
© <span id="copyright-year">{currentYear}</span> {profileConfig.name}. All Rights Reserved. /
|
||||
© <span id="copyright-year">{currentYear}</span> {profileConfig.name}. 千里之行,始于足下.
|
||||
Powered by
|
||||
<a class="transition link text-[var(--primary)] font-medium" target="_blank" href="https://astro.namyki.top">Namyki</a> <br/>
|
||||
<a class="transition link text-[var(--primary)] font-medium" href={url('rss/')} onclick={`event.preventDefault(); navigateToPage('${url('rss/')}')`}>RSS</a> /
|
||||
<a class="transition link text-[var(--primary)] font-medium" href={url('atom/')} onclick={`event.preventDefault(); navigateToPage('${url('atom/')}')`}>Atom</a> /
|
||||
<a class="transition link text-[var(--primary)] font-medium" target="_blank" href={url('sitemap-index.xml')}>Sitemap</a><br>
|
||||
Powered by
|
||||
<a class="transition link text-[var(--primary)] font-medium" target="_blank" href="https://astro.build">Astro</a> &
|
||||
<a class="transition link text-[var(--primary)] font-medium" target="_blank" href="https://github.com/matsuzaka-yuki/mizuki">Mizuki</a> Version <a class="transition link text-[var(--primary)] font-medium" target="_blank" href="https://github.com/matsuzaka-yuki/mizuki">7.6</a><br>
|
||||
|
||||
|
||||
<a class="transition link text-[var(--primary)] font-medium" target="_blank" href={url('sitemap-index.xml')}>Sitemap</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -22,7 +22,7 @@ const SITE_TIMEZONE = 8; //设置你的网站时区 from -12 to 12 default in UT
|
||||
export const siteConfig: SiteConfig = {
|
||||
title: "海の小屋",
|
||||
subtitle: "工于至诚,学以致用",
|
||||
siteURL: "https://blog.namyki.com/", // 请替换为你的站点URL,以斜杠结尾
|
||||
siteURL: "https://astro.namyki.com/", // 请替换为你的站点URL,以斜杠结尾
|
||||
siteStartDate: "2025-12-01", // 站点开始运行日期,用于站点统计组件计算运行天数
|
||||
|
||||
timeZone: SITE_TIMEZONE,
|
||||
@@ -184,15 +184,15 @@ export const siteConfig: SiteConfig = {
|
||||
// 英文字体 - 优先级最高
|
||||
// 指定为英文字体则无论字体包含多大范围,都只会保留 ASCII 字符子集
|
||||
fontFamily: "ZenMaruGothic-Medium",
|
||||
fontWeight: "400",
|
||||
fontWeight: "500",
|
||||
localFonts: ["ZenMaruGothic-Medium.ttf"],
|
||||
enableCompress: true, // 启用字体子集优化,减少字体文件大小
|
||||
},
|
||||
cjkFont: {
|
||||
// 中日韩字体 - 作为回退字体
|
||||
fontFamily: "萝莉体 第二版",
|
||||
fontWeight: "500",
|
||||
localFonts: ["萝莉体 第二版.ttf"],
|
||||
fontFamily: "XiangcuiDengcusong",
|
||||
fontWeight: "400",
|
||||
localFonts: ["XiangcuiDengcusong.ttf"],
|
||||
enableCompress: true, // 启用字体子集优化,减少字体文件大小
|
||||
},
|
||||
},
|
||||
|
||||
@@ -18,8 +18,8 @@
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: '萝莉体 第二版';
|
||||
src: url('/assets/font/萝莉体 第二版.woff2') format('woff2');
|
||||
font-family: 'XiangcuiDengcusong';
|
||||
src: url('/assets/font/XiangcuiDengcusong.woff2') format('woff2');
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"ignoreDeprecations": "6.0",
|
||||
"target": "ESNext",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "bundler",
|
||||
|
||||
Reference in New Issue
Block a user