Hugo Hello Friend NG 主题配置指南

Hugo Hello Friend NG 主题配置要点

很有个性的一个主题,有一些想定制化的东西,如果能搞定也会用。

参考资料

Hello Friend NG

exampleSite

es=themes/hello-friend-ng/exampleSite hugo server --disableFastRender -D --contentDir ${es}/content --config themes/hello-friend-ng/exampleSite/config.toml

配置文章链接格式,参见 Permalinks

permalinks:
  page:
    posts: /posts/:year/:slugorfilename/

:slug 对这个主题无效,需要用 :slugorfilename

替换默认字体

assets/scss/_fonts.scss 中添加内容,无效;需要放到 assets/scss/_main.scss

@import url('https://npm.elemecdn.com/lxgw-wenkai-screen-webfont/style.css');

body {
  font-family: "LXGW WenKai Screen", sans-serif;
}

接入评论系统

https://gohugo.io/content-management/comments/

Commento

  1. 注册账号
  2. 添加域名
  3. 引入配置
params:
  ...
  commento:
    url: "https://cdn.commento.io/js/commento.js"

免费计划:每个月只有 1000 次的 API 请求

Last updated on 2024-06-20 18:11
Built with Hugo