Hugo-A fast and flexible static site generator built in GoLang
hugo是一个更快的网站生成工具,使用GO语言编写,速度相对hexo快至少数倍
安装方法按如下2个连接:
http://gohugo.io/tutorials/installing-on-windows/
http://gohugo.io/overview/quickstart/
我的安装简要笔记:
下载hugo
解压到e:\hugo\
增加e:\hugo到系统环境变量path的末尾
hugo new mysite
cd mysite
git clone --recursive https://github.com/spf13/hugoThemes themes
hugo new about.md
(用MarkdownPad2写about.md)
hugo new post/first.md
(用MarkdownPad2写first.md)
hugo server —theme=hyde —buildDrafts
OK 更多使用方法自己去作者的官方文档查看
使用后感:相对hexo,生成网页速度更快,一样的28篇文章、标签和分类,hexo生成需要至少500ms以上(多次生成取平均值),而hugo生成则稳定在120ms左右(多次的平均值),而且波动不大。唯一缺憾的是目前hugo主题还少,也没有中文的说明文档
时间: 2024-10-13 14:41:18