Hugo Book 主题配置指南

Hugo Book 主题配置指南

2024-05-26 · li3huo
个人网站
Hugo

参考资料 #

显示 Post 属性 #

提供的 partials 没地方加作者

只能 overwrite layouts/partials/docs/post-meta.html

<h5>
{{ with .Date }}
  {{ partial "docs/date" (dict "Date" . "Format" $.Site.Params.DateFormat) }}
{{ end }}
· 
{{ with .Params.author }}
  {{ . }}
{{ else }}
  {{ .Site.Params.author }}
{{ end }}
</h5>

Extra Customisation #

assets/_fonts.scss 替换默认字体

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

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