Hugo

使用hugo在github上搭建blog

安装golang的开发环境 brew install golang cat “export GOPATH=/root/gocode” >> ~/.bash_profile cat “export PATH=${GOPATH}/bin:$PATH” >> ~/.bash_profile 安装hugo go get -v github.com/spf13/hugo 源码会下载到$GOPATH/src下 可执行文件在$GOPATH/bin下 如果没有生成可执行文件,就使用go install手动安装一下hugo 创建一个站点 hugo new site localhost 执行命令的目录下会生成一个新目录localhost 该站点的所有文件都保存在该目录下 目录结构如下 . ├── archetypes ├── config.toml ├── content ├── data ├── layouts ├── static └── themes 给localhost下载一个theme cd localhost/themes git clone https://github.com/enten/hyde-y.git' 修改localhost站点的配置, 用下边的值覆盖config.toml vi config.toml # hostname (and path) to the root eg.