Go to file
Daichi Mukai 6280aef565 Fix typo
2018-12-01 17:18:21 +09:00
.github Slight tweak on text 2018-11-30 23:17:22 +01:00
ci Rename all occurrences of gutenberg to zola in code 2018-10-18 22:50:06 +02:00
completions Rebuild completions 2018-11-12 21:37:26 +01:00
components Fix reload with taxonomies 2018-11-16 23:51:11 +01:00
docs Removing gutenberg completely from installation instructions 2018-11-30 22:23:18 +01:00
src Update deps + fmt 2018-11-14 17:34:21 +01:00
sublime_syntaxes Update syntaxes 2018-11-11 12:06:55 +01:00
sublime_themes Add ayu highlighting theme 2018-10-26 20:04:56 +02:00
test_site Fix reload with taxonomies 2018-11-16 23:51:11 +01:00
.editorconfig Create new project 2016-12-06 14:51:33 +09:00
.gitignore Add snacraft config 2018-06-04 23:37:55 +12:00
.gitmodules Point to https submodule instead of git 2018-11-15 17:12:36 +01:00
.travis.yml Update tokens and badges 2018-11-17 14:34:18 +01:00
appveyor.yml Update tokens and badges 2018-11-17 14:34:18 +01:00
build.rs rustfmt 2018-10-31 08:18:57 +01:00
Cargo.lock Min Rust version updated to 1.29 2018-11-17 13:53:11 +01:00
Cargo.toml Rename all occurrences of gutenberg to zola in code 2018-10-18 22:50:06 +02:00
CHANGELOG.md Set release date 2018-11-17 15:05:35 +01:00
CONTRIBUTING.md Adding GH specific issues/pr templates 2018-11-30 23:16:21 +01:00
EXAMPLES.md Update EXAMPLES.md 2018-10-30 07:44:02 +02:00
LICENSE USe date range for license 2018-01-16 13:39:56 +01:00
netlify.toml Add custom data output to the comparison 2018-11-18 09:26:43 +01:00
README.md Fix typo 2018-12-01 17:18:21 +09:00
rustfmt.toml rustfmt 2018-10-31 08:18:57 +01:00
snapcraft.yaml Update snapcraft.yaml 2018-11-19 14:35:28 +01:00

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
i18n
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.