Skip to content
A fast static site generator in a single binary with everything built-in.
Branch: master
Clone or download
Keats Merge pull request #645 from pandark/patch-1
use travis "minimal" vm in the documentation
Latest commit b443be2 Mar 28, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github
ci
completions
components Allow default base-path command line option to be set for building an… Mar 24, 2019
docs use travis "minimal" vm in the documentation Mar 28, 2019
src Allow default base-path command line option to be set for building an… Mar 24, 2019
sublime_syntaxes
sublime_themes
test_site Ensure we don't delete root index without Feb 22, 2019
test_site_i18n Add multilingual taxonomies Jan 7, 2019
.editorconfig Create new project Dec 6, 2016
.gitignore Merge pull request #567 from getzola/next Mar 25, 2019
.gitmodules
.travis.yml
CHANGELOG.md
CONTRIBUTING.md Adding GH specific issues/pr templates Nov 30, 2018
Cargo.lock
Cargo.toml
EXAMPLES.md
LICENSE
README.md
appveyor.yml
build.rs
netlify.toml
rustfmt.toml
snapcraft.yaml

README.md

zola (né Gutenberg)

Build Status Build status

A fast static site generator in a single binary with everything built-in.

Documentation is available on its site or in the docs/content folder of the repository and the community can use its forum.

Comparisons with other static site generators

Zola Cobalt Hugo Pelican
Single binary
Language Rust Rust Go Python
Syntax highlighting
Sass compilation
Assets co-location
Multilingual site
Image processing
Sane & powerful template engine ~ ~
Themes
Shortcodes
Internal links
Link checker
Table of contents
Automatic header anchors
Aliases
Pagination
Custom taxonomies
Search
Data files
LiveReload
Netlify support ~
Breadcrumbs
Custom output formats ?

Supported content formats

  • Zola: markdown
  • Cobalt: markdown
  • Hugo: markdown, asciidoc, org-mode
  • Pelican: reStructuredText, markdown, asciidoc, org-mode, whatever-you-want

Template engine explanation

Cobalt gets ~ as, while based on Liquid, the Rust library doesn't implement all its features but there is no documentation on what is and isn't implemented. The errors are also cryptic. Liquid itself is not powerful enough to do some of things you can do in Jinja2, Go templates or Tera.

Hugo gets ~. It is probably the most powerful template engine in the list after Jinja2 (hard to beat python code in templates) but personally drives me insane, to the point of writing my own template engine and static site generator. Yes, this is a bit biased.

Pelican notes

Many features of Pelican are coming from plugins, which might be tricky to use because of version mismatch or lacking documentation. Netlify supports Python and Pipenv but you still need to install your dependencies manually.

You can’t perform that action at this time.