使用命令创建站点

1
hugo new site hugoblog

会显示以下结构

下载主题

git submodule add git@github.com:flysnow-org/maupassant-hugo.git themes/maupassant

启动本地博客服务

1
hugo server -D -t maupassant

-D代表草稿可以发布 -t 代表主题名称
执行完后显示如下
https://img.vinua.cn/image/Otu9E
打印构建过程,然后显示本地访问地址http://localhost:1313/

写新博客

1
hugo new post/hello-world.md

如何使用hugo new