Go to file
Marco Tolk 1bd777f0e5
Add HTTP POST capability to load_data() (#1400)
* Fixed failing tests on windows when user is not VssAdministrator.

* Fixed windows specific testcases related to \r

* Added the ability to perform POST requests to load_data

* make tests on windows deal with both \r being there on windows, and \r not being generated as on my personal windows system.

* undo earlier commit eaaa8c3ddd65d474161073a6fb80599eea1a9a21

because it fails on azure buildserver

* added new arguments to the hash for the cache function.

So caching now works as it should

* added new arguments to the hash for the cache function.

* improved documentation of load_data POST with better example.

* added basic derive traits

* changed load_data param contenttype to content_type

* fixed caching issues that went missing?

* format

* made code more idiomatic as suggested by keats
2021-04-21 21:29:47 +02:00
.github Update PULL_REQUEST_TEMPLATE.md 2019-05-07 07:18:26 -07:00
completions Make path to config.toml independent from root dir (#1023) 2020-05-23 11:55:45 +02:00
components Add HTTP POST capability to load_data() (#1400) 2021-04-21 21:29:47 +02:00
docs Add HTTP POST capability to load_data() (#1400) 2021-04-21 21:29:47 +02:00
src Some clippy fixes 2021-04-07 22:13:15 +02:00
sublime feat: add base16-atelierdune-light highlight theme (#1406) 2021-03-14 09:49:29 +01:00
test_site [WIP] Add support for base64-encoded hash values to 'get_file_hash' (#1339) 2021-02-20 13:31:37 +01:00
test_site_i18n Move taxonomies to language options dict 2021-04-07 22:13:15 +02:00
.dockerignore add .dockerignore file to reduce intermediate docker image size and build time 2020-06-09 12:16:01 +02:00
.editorconfig Create new project 2016-12-06 14:51:33 +09:00
.gitignore Reverse pagination (#1147) 2020-09-01 21:00:21 +02:00
.gitmodules Move syntaxes around to make packing a two step process 2020-12-28 17:39:54 +01:00
azure-pipelines.yml Update MSRV 2021-01-05 22:15:09 +01:00
build.rs Use Rust 2018 edition (#885) 2020-02-02 17:48:43 -08:00
Cargo.lock link_checking: prevent rate-limiting (#1421) 2021-04-21 21:13:38 +02:00
Cargo.toml Fix can not build with indexing-zh (#1433) 2021-04-19 10:33:12 +02:00
CHANGELOG.md Nest translations in languages options 2021-04-07 22:13:15 +02:00
CONTRIBUTING.md Clarify docs about adding a Sublime theme 2020-06-07 00:49:27 +02:00
Dockerfile Update dockerfile to remove hardcoded version number (#939) 2020-02-02 17:42:43 -08:00
EXAMPLES.md Add NorthCon e.V. to list of example sites (#1248) 2020-12-01 09:45:27 +01:00
is-ehh.svg improve README comparison svgs 2019-04-09 14:36:55 -04:00
is-no.svg improve README comparison svgs 2019-04-09 14:36:55 -04:00
is-yes.svg improve README comparison svgs 2019-04-09 14:36:55 -04:00
LICENSE USe date range for license 2018-01-16 13:39:56 +01:00
netlify.toml Use zola 0.13 for docs 2021-02-02 20:57:37 +01:00
README.md ZEIT Now => Vercel 2020-05-25 17:45:55 -04:00
rustfmt.toml rustfmt 2018-10-31 08:18:57 +01:00
snapcraft.yaml Update snapcraft 2021-01-09 14:48:39 +01:00

zola (né Gutenberg)

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 ehh no yes yes
Image processing yes no yes yes
Sane & powerful template engine yes yes 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 yes no yes no
Vercel support yes no yes yes
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

ehh explanations

Hugo gets ehh for the template engine 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.

Zola gets ehh for multi-language support as it only has a basic support and does not (yet) offer things like i18n in templates.

Pelican notes

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