Fixlt 主题

修改字体

当前博客目录为:hugoblog
.ttf 字体文件放到 /hugoblog/static/fonts 目录
/hugoblog/assets/css 目录下创建 _custom.scss 文件

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
// 定义字体
@font-face {
    font-family: HarmonyOS_Sans;
    src: url('/fonts/HarmonyOS_Sans_Regular.ttf');
    font-display: swap;
}

// 使用:修改 `html` 标签的字体,将 `html` 改为 `*` 则是修改所有字体
html {
    font-family: 'HarmonyOS_Sans'
}

或者在 /hugoblog/themes/FixIt/assets/css/_variables.scss 文件中修改全局变量

1
$global-font-family: HarmonyOS_Sans !default;

若一些字体没有改变,通过 F12 工具查看相关元素的标签,在 /hugoblog/assets/css/_custom.scss 中添加该标签

去除文章前的绿色箭头

去掉 front matter 中的 repost 相关参数

文章中的图片以画廊形式展示

hugo.tomlfront matter 中的 lightgallery 的值设置为 true

主页显示的文章不止包含 posts 目录下的,也包含其他目录下的

其他目录的文章 front matter 指定 type: posts


0%