博客搭建教程

  1. 网站框架主题
  1. 起步 到https://github.com/gohugoio/hugo/releases 下载指定二进制文件,解压到某个位置,添加目录进path变量,然后执行下面脚本

    hugo new site smirkcat # 新建hugo项目
    cd smirkcat
    git clone https://github.com/Y4er/hugo-theme-easybook themes/easybook
    cp themes/easybook/exampleSite/config.toml config.toml #修改
    hugo new post/helloworld.md # 第一篇博客
    hugo server -D # 测试

打开http://localhost:1313/ 观看效果

  1. 发布github