Go to file
Yaroslav d571dea8c3
Per section/subsection feeds (#1128)
* Per section/subsection feeds

* Added `generate_feed` variable to section front matter.
* Generate atom/rss feeds for sections/subsections that have the
`generate_feed` variable set to true (false by default); this works
independent of the `generate_feed` variable in the root `config.toml`
file, however, the name (and template) of the feed file for each section
is the same as `feed_filename` in `config.toml`, just located in the
root of each section.
* Slightly edited `atom.xml` and `rss.xml` so that they include the
section title (if any), and the url of a section, if it's a section
feed.

* Section feeds: tests

* Changed a couple of sections' front matter in order to generate feeds
for them for the test.
* Changed the can_build_feed test in site package to can_build_feeds and
included some assertions to make sure that section feeds are generated
when requested.

* Section feeds: documentation

* Added information about the section front matter variable
`generate_feed` in the section content page.
* Added information about section feeds in the feeds template page.

* Section feeds fix: use section.path for feed path
2020-08-27 20:21:37 +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 Per section/subsection feeds (#1128) 2020-08-27 20:21:37 +02:00
docs Per section/subsection feeds (#1128) 2020-08-27 20:21:37 +02:00
src Change zola serve to load HTML from memory instead of disk (#1114) 2020-08-16 18:39:04 +02:00
sublime add OneHalf Light/Dark theme (#1116) 2020-08-03 20:08:17 +02:00
test_site Per section/subsection feeds (#1128) 2020-08-27 20:21:37 +02:00
test_site_i18n A Fix for the permalinks in #1136 (#1142) 2020-08-26 19:36:02 +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 Optionally do not slugify paths (#875) 2020-02-02 17:48:43 -08:00
.gitmodules Add GLSL and GDScrip syntax highlighting (#1060) 2020-06-12 12:19:50 +02:00
azure-pipelines.yml Update pinned version in CI 2020-04-21 18:29:41 +02:00
build.rs Use Rust 2018 edition (#885) 2020-02-02 17:48:43 -08:00
Cargo.lock Fixed unsound errors (#1143) 2020-08-20 19:51:17 +02:00
Cargo.toml Change zola serve to load HTML from memory instead of disk (#1114) 2020-08-16 18:39:04 +02:00
CHANGELOG.md Merge branch 'master' into next 2020-08-17 21:39:29 +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 Adding my blog to the example list (#1124) 2020-08-12 09:18:28 +02: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 clippy + fmt + fix toml dates in extra arrays 2020-06-18 21:12:46 +02: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 snap 2020-06-09 22:30:29 +02: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.