Go to file
2019-01-06 14:18:26 -05: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 race condition with language folder creation 2019-01-04 21:57:27 +01:00
docs Mention build rm the directory 2019-01-05 11:04:12 +01:00
src Mention build rm the directory 2019-01-05 11:04:12 +01:00
sublime_syntaxes Add Dart syntax highlighting 2018-12-04 19:00:18 +01:00
sublime_themes Add ayu highlighting theme 2018-10-26 20:04:56 +02:00
test_site Fix broken taxonomies pagination 2018-11-29 20:24:46 +01:00
test_site_i18n Add translations to page/sections 2019-01-04 20:31:31 +01:00
.editorconfig Create new project 2016-12-06 14:51:33 +09:00
.gitignore Generate per language RSS feed 2019-01-02 22:11:34 +01:00
.gitmodules Point to https submodule instead of git 2018-11-15 17:12:36 +01:00
.travis.yml Pest now requires 1.31 2018-12-29 11:38:28 +01:00
appveyor.yml Pest now requires 1.31 2018-12-29 11:38:28 +01:00
build.rs rustfmt 2018-10-31 08:18:57 +01:00
Cargo.lock Update deps + rustfmt 2019-01-02 20:41:29 +01:00
Cargo.toml Add languages to config 2018-12-27 10:53:17 +01:00
CHANGELOG.md Lower serve latency 2019-01-05 11:02:47 +01:00
CONTRIBUTING.md Adding GH specific issues/pr templates 2018-11-30 23:16:21 +01:00
EXAMPLES.md add michael.plotke.me to list of examples 2019-01-02 16:35:28 -05:00
is-ehh.svg use svg icon in comparison table, tighten notes prose 2019-01-06 14:18:26 -05:00
is-no.svg use svg icon in comparison table, tighten notes prose 2019-01-06 14:18:26 -05:00
is-yes.svg use svg icon in comparison table, tighten notes prose 2019-01-06 14:18:26 -05: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 use svg icon in comparison table, tighten notes prose 2019-01-06 14:18:26 -05:00
rustfmt.toml rustfmt 2018-10-31 08:18:57 +01:00
snapcraft.yaml Add home plug to snapcraft.yml 2018-12-02 18:27:29 -08: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 yes yes yes no
Language Rust Rust Go Python
Syntax highlighting yes yes yes yes
Sass compilation yes yes yes yes
Assets co-location yes yes yes yes
Multilingual site yes no yes yes
Image processing yes no yes yes
Sane & powerful template engine yes ehh ehh yes
Themes yes no yes yes
Shortcodes yes no yes yes
Internal links yes no yes yes
Link checker yes no no yes
Table of contents yes no yes yes
Automatic header anchors yes no yes yes
Aliases yes no yes yes
Pagination yes no yes yes
Custom taxonomies yes no yes no
Search yes no no yes
Data files yes yes yes no
LiveReload yes no yes yes
Netlify support ehh no yes no
Breadcrumbs yes no no yes
Custom output formats no no yes no

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 ehh because, while based on Liquid, the Rust library doesn't implement all its features, and there is no documentation on what is and isn't implemented; the errors are cryptic; and Liquid itself is not powerful enough to do some of things you can do in Jinja2, Go templates, or Tera.

Hugo gets ehh because while it is probably the most powerful template engine in the list, after Jinja2, it 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.