spf13 Google -->
I’m leaving my role as the Product Lead for the Go Language at Google. I’m super proud of …
Hugo is a static site generator written in Go. It is optimized for speed, easy use and configurability. Hugo takes a directory with content and templates and renders them into a full html website.
Hugo makes use of markdown files with front matter for meta data.
Written in GoLang for speed, Hugo is significantly faster than most
other static site generators.
A typical website of moderate size can be rendered in a fraction of a second. A good rule of thumb is that Hugo takes around 1 millisecond for each piece of content. It’s so fast that it will render the site in less time than it takes to switch to your browser and reload.
Hugo is made to be very flexible. Define your own content types. Define your own indexes. Build your own templates, shortcodes and more. It is written to work well with any kind of website including blogs, tumbles and docs.
Hugo is written in GoLang with support for Windows, Linux, FreeBSD and OSX.
The latest release can be found at hugo releases. We currently build for Windows, Linux, FreeBSD and OS X for x64 and 386 architectures.
Installation is very easy. Simply download the appropriate version for your platform from hugo releases. Once downloaded it can be run from anywhere. You don’t need to install it into a global location. This works well for shared hosts and other systems where you don’t have a privileged account.
Ideally you should install it somewhere in your path for easy use. /usr/local/bin
is the most probable location.
The Hugo executible has no external dependencies.
git clone https://github.com/spf13/hugo
cd hugo
go get
Because go expects all of your libraries to be found in either $GOROOT or $GOPATH, it’s helpful to symlink the project to one of the following paths:
If you only want to build from source, it’s even easier.
go get github.com/spf13/hugo
cd /path/to/hugo
go build -o hugo main.go
mv hugo /usr/local/bin/
cd /path/to/hugo
go install github.com/spf13/hugo/hugolibs
go run main.go
Complete documentation is available at Hugo Documentation.
Hugo is released under the Simple Public License. See LICENSE.md.