Hugo搭建私人博客
安装Hugo,安装比较简单,因为我的Mac电脑,使用Homebrew安装Hugo:
brew install hugo
安装好以后创建名为blog的站点
hugo new site Blog
添加一个主题
cd blob;//本地博客根目录
git init;
git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke;
# 编辑你的 config.toml 配置文件使用该主题
echo 'theme = "ananke"' >> config.toml
添加一篇文章
hugo new posts/my-first-post.md
查看运行效果
hugo server -D
博客站点目录说明
myblog
├─config.toml ## 配置文件
├─archetypes ## 默认生成新页面的模板
├─public ## 生成的文章静态文件
├─content ## 生成的文章
├─static ## 静态文件目录
└─themes ## 下载的模板目录