PaperMod PE | Demo
PaperMod PE 是 Hugo-PaperMod 的个性化版本。
-
安装 Hugo。参考文档:Hugo Docs's - Quick Start (需要 Hugo 版本 >= v0.125.3)
-
创建 Hugo Site
# 将下面 MySite 替换为你的网站名
hugo new site MySite --format yml
更多命令参考:Hugo Docs's - hugo new site command
- 启用 Git
cd MySite
git init .
git add .
- 安装 PaperMod-PE 主题
git submodule add --depth=1 https://github.com/tofuwine/PaperMod-PE.git themes/PaperMod-PE
- 修改 Hugo 配置文件:
theme: PaperMod-PE
本项目对 Hugo-PaperMod 进行了功能及样式修改,主要内容如下:
单位由 px
改用 rem
/ em
,为简化计算,设置 html: font-size: 62.5%;
。
转换计算:
- 10px = 1rem
- 16px = 1.6rem
使用如下命令更新主题:
git submodule update --init --recursive