下载博客主题
创建好博客项目后,接下来是下载hugo博客的主题,这里有很多主题,我们可以任意挑选,比如我们选择了bootstrap4-blog 主题。
然后在 Blog 目录下使用git 命令来下载主题:
1
| git clone https://github.com/alanorth/hugo-theme-bootstrap4-blog.git themes/hugo-theme-bootstrap4-blog
|
下载下来的主题会放在themes 目录中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| └── hugo-theme-bootstrap4-blog
├── CHANGELOG.md
├── LICENSE.txt
├── README.md
├── archetypes
├── assets
├── exampleSite # 本主题示例内容
| ├── content # 示例博客文章
│ |-- static
│ |-- config.toml # 本主题配置
├── i18n
├── images
├── layouts
├── package-lock.json
├── package.json
├── screenshot.png
├── source
├── theme.toml
└── webpack.config.js
|
使用主题
1
2
3
| vim config.toml
theme = "hugo-theme-bootstrap4-blog"
|