FixIt使用了Sass必须执行 go install -tags extended github.com/gohugoio/hugo@latest,否则会报错
如果已经安装了hugo,一定要升级到新版本,旧版本有很多不兼容FixIt
建站
1
2
3
4
5
6
7
8
hugo new site blog
cd blog
git init
git submodule add https://github.com/hugo-fixit/FixIt.git themes/FixIt
git submodule update
## 复制配置文件mv config.toml config.old.toml
cp themes/FixIt/config.toml config.toml
修改 config.toml
最前面添加
1
2
3
4
5
6
7
8
9
title=""baseURL=""languageCode="zh-cn"# en / zh-cn / ... (This field determines which i18n file to use)defaultContentLanguage="zh-cn"# 是否包括中日韩文字hasCJKLanguage=truetheme="FixIt"