0%

Hugo基本使用

hugo使用

新建仓库

hugoBlog

apt install hugo

hugo new site myblog

1
2
3
4
5
6
7
8
9
10
11
12
13
archetypes: 配置文章元数据

content: 博客文章所在目录

data: 用来存放数据文件,一般是 json 文件

layouts: 网站布局

static: 一些静态的内容,例如图片等

themes: 博客主题

config.yml: 站点配置文件,支持 yml.toml 和 json 三种格式的
1
2
3
git clone https://github.com/mivinci/hugo-theme-minima.git themes/minima

git clone https://github.com/yoshiharuyamashita/blackburn.git

hugo new theme

hugo new /.

hugo server

hugo server -D 本地预览

主题

https://themes.gohugo.io/

theme = ‘minima’

https://themes.gohugo.io/themes/archie/

https://themes.gohugo.io/themes/hugo-theme-minima/

https://themes.gohugo.io/themes/blackburn/

https://themes.gohugo.io/themes/gruvhugo/