/go-static-blog

Go 语言实现的静态博客生成器

Primary LanguageCSSMIT LicenseMIT

go-static-blog

Go 语言实现的静态博客生成器

使用

$ git clone https://github.com/imyhui/go-static-blog
$ cd go-static-blog
$ go build
$ ./go-static-blog -h
go-static-blog version: 1.0.0
Usage: go-static-blog [-g generate] [-s server] 

Options:
  -g	clean and generate
  -s	server on 8080
$ ./go-static-blog -g -s

访问 http://localhost:8080

界面

主页 文章页面 标签云

详细实现过程见这里

后续优化

    • 优化解析文章逻辑

      • 添加标签
    • 优化页面,添加样式
  • 添加页面
    • 归档页
      • 标签云
    • 关于页
  • 添加命令行工具,如生成文章,部署等
  • 添加持续集成服务,如Travis CI 或者 GitHub Actions