15 KiB
+++ title = "Zola" description = "Zola is a static site generator" date = 2025-05-01T18:00:00+00:00 updated = 2021-05-01T18:00:00+00:00 template = "docs/section.html" sort_by = "weight" weight = 4 draft = false [taxonomies] documentation=["Reference"] categories=["Web Development", "Static Site Generation", "Zola"] +++
Zola is a static site generator written in Rust. It builds an entire web page out of a structured markdown collection and a collection of HTML templates. The templating language is called Tera.
Zola is a single binary capable of assembling the website out of a collection of templates, SASS files, static data (including CSS if you're not into SASS), and markdown files. The Markdown files create the structure of the website as a series of folders.
If you need anything else (Typescript built into Javascript, templates other than Zola's internal, static file conversion, etc.), you'll need separate toolchains for those.
Running Zola
Zola has only a few commands:
zola init
- Starts a new Zola project. Creates the structure described in the next section, especially if you enable sass.zola serve
- Starts a localhost webserver to serve your content for demo.zola build
- Builds a Zola project into a collection of static HTML.zola check
- Check that the current site is coherentzola help
- This list!
Project Layout
Zola uses a simple layout of content and support, with a single configuration
file. The configuration file has two parts: a root which controls compilation,
and an [extra]
section that provides data and details that will be available
to all templates during compilation.
The following files and folders define a basic Zola project. Any other folders in a zola project are ignored.
config.toml
: The configuration file. Uses the TOML configuration language.content/
: The structured content folder. All your "living" stuff goes here.sass/
: Sass is a CSS preprocessor language that makes CSS easier.static/
: Static content such as images, fonts, and Javascripttemplates/
: The HTML templates (and includes, etc) that define the website's layouts
Every folder under the content/
folder that has an _index.md
file is
considered a section, presenting a table of contents or other introductory
matter. Every other markdown document in a section is considered a page.
Zola uses different templates for sections versus pages, and individual pages
and sections can choose alternative templates.
A folder under a section that has an index.md
file (note the lack of
underscore prefix) is considered a page. This allows content writers to
supply additional assets, such as images or data files, along with the contents
of the page.
The Templating Languagae
The Tera templating language looks a lot like Django's, or for that matter any number of templating languages. Every page generated with Tera receives a context, which can be thought of as a JSON object with which to populate the page (it is, technically, a Serde::Serializable). Zola provides a large and complex context, which is explained further down.
Tera has the following syntax. Everything within these markers is processed by Tera; everything outside is left untouched.
{{
and}}
for expressions{%
and%}
for statements{#
and#}
for comments
Statements that have a dash as part of their delimiter remove all whitespace
from around the delimiter. {%-
says to eliminate all whitespace between this
statement and anything that came before it; -%}
says to eliminate everything
that comes after it.
Statements
block
The block
is probably the most important statement; it defines a chunk of
content. When a template is created, it can define its whole content as a
block, and it can define subsections (note: section is a heavily overloaded
word) of itself. These blocks can be used as-is, or replaced when another
template inherits them and overwrites them.
You can inherit and extend a block with a super()
command:
{% block stylesheet %}
{{ super() }}
{# Insert your own stylesheet HTML here #}
{% endblock %}
extends
The extends
keyword imports one template into another. A file that extends
that import then provides its own overrides or extensions for blocks found in
the imported templates, substituting its own content and processing for that of
the extended template.
set
Variables are set in a given scope with set
:
{% set my_var = "hello" %}
Sets a variable my_var
. Variables can contain booleans, floats, strings,
integers, and arrays. There is a special syntax, set_global
, that can be used
to set variables one level up in scope when working inside for
loops (i.e. in
the outer scope containing the loop, preserving its content between iterations).
if
Conditional statements are managed with if/is ... else ... endif
{% if my_var is ... %} ... {% endif %}
The list of is
tests that are shipped with Zola are:
{{ definition_list(source="docs/zola/predicates.json") }}
for
Arrays are iterated with the for x in array/map ... endfor
syntax.
{% for name in users %}
Hello: {{ name }}
{% endfor %}
Maps will provide a key/value pair. The names of the two fields are arbitrary:
{% for name, label in options %}
<option value="{name}">{label}</option>
{% endfor %}
Array filters (see below) are invoked before the loop. The following will print the list in reverse order.
{% for name in users | reverse %}{{ name }}{% endfor %}
Loops have continue
and break
statements that can be invoked inside if
blocks.
include
Include other content into the current template being rendered. Include strings cannot be built out of variables, but they may be a list, in which case the first filename found is rendered. If the include block has the phrase 'ignore missing' at the end a missing file will not cause an error at build time.
{% include "header.html" %}
Macros
Macros are blocks of template that can be passed variables; they're basically
just big chunks of content that can be parameterized. Macros must be defined in
a file separate from the main content and imported with a distinct syntax from
import
:
{% import "header.html" as header %}
The header macro can be invoked in that file like this:
{{ header::header("My Blog!") }}
And an example of this macro (again, in the header.html
file) would look like this:
{% macro header(title) %}
<header class="header">
<h1>{ title }</h1>
</header>
{% endmacro %}
raw
{% raw %}Content {{ goes here }}{% endraw %}
Content within the raw
block will not be processed.
Expressions
Tera's {{
... }}
syntax supports expressions, usually just evaluating the
variable. There are a few basic operations and filters available, however:
Math And Logic Expressions:
{{ definition_list(source="docs/zola/expressions.json") }}
Concatenation:
Strings can be concatenated with the ~
operator.
Filters:
Filters can be used to, well, filter and edit expressions. A filter is placed
at the end of an expression with a pipe between them, i.e. {{ name | upper }}
would upper-case the contents of the variable name
.
An entire chunk of HTML can be filtered by:
{% filter filter_name %}
...
{% endfilter %}
The filters provided are:
{{ definition_list(source="docs/zola/filters.json") }}
Functions
Only a few functions provide ad-hoc expressions in-line with template interpretation.
range
: Generates an array of numbers.now
: Generates the current datetimeget_random
: Generates a random numberget_env
: Returns an environment variableget_page
: Returns a the content of a page in the Zola content folderget_section
: Returns the content of a Zola section (an_index.md
) file as an object.get_taxonomy_url
: Returns the URL of a Zola taxonomy indexget_url
: Gets the generated URL for a document in the Zola content folderget_image_metadata
: Gets the metadata for an image in Zola's static folderload_data
: (Zola) Loads static data from a file. Understands TOML, JSON, CSV and BibTeX. Takes eitherpath=
orurl=
(!) as an argument.resize_image
: (Zola) Takes an image, resizes the image, and provides a link to the resized image.
Zola Content
Sections
In Zola, every folder under ./content/
(including that folder itself) is
potentially a section. Sections are basically Zola's version of the WWW
index
protocol. A section is defined by the presence of an _index.md
file
which contains both a TOML header (separated by +++
above and below), and by
some optional content. The TOML header may specify which template to use to
render the section info, otherwise Zola falls back to the default at
./templates/section.html
.
The arguments that con be placed into the TOML header of a the _index.md
file are:
title
: a stringdescription
: a stringdraft
:true
/false
if this section should be included in buildssort_by
: Sorting function to use:date
,title
,weight
, ornone
weight
: Used to provide subsection weight to a parent sectiontemplate
: The template to render this section. Defaults to./templates/section.html
page_template
: The default template to render pages in this section. Pages with this field specified overide this settingpaginate_by
: Number of pages to paginate by. Set to0
for no paginationpaginate_path
: The prefix for paginations. Default to "page"paginate_reversed
: booleaninsert_anchor_links
: One ofleft
,right
, ornone
. Specifies whether an anchor-link should be provided for every header item. Probably overridable by the template.in_search_index
: Include this section in the search index. Only matters if search is enabledtransparent
:true
/false
, specifies if this section should be inherited by the parentaliases
: An array of paths to redirect to this folder[extra]
: Your extra data block
The context for a section page contains the following fields, which will be available to the template:
content
: The content of the_index.md
filetitle
: The Title found in the TOML part of_index.md
description
: (optional): The descriptionpath
: As provided by Zolacomponents
: The path, split into atomspermalink
: The URL for this pageextra
: The contents of the TOML's[extra.*]
blocks.pages
: An array of all child pages in this same folder.subsections
: An array of all child sections in this same folder.toc
: An array ofHeader
objects: id, title, permalink, children (Which is itself an array ofHeader
objects)word_count
: Unicode-smart.reading_time
: Number;assets
: An array of assets available in this section.ancestors
: An array of parent paths, with the root being the last one.
Pages
A page is either a markdown file within the same folder as its section, or it
is in a subfolder with a file named index.md
(note the lack of prefix
underscore!). The latter syntax is preferred if the file has associated assets,
such as JavaScript or images, that you want to load alongside the content within
the markdown page.
The following items can appear in the TOML header of a page:
title
: The title of this page.description
: A description of this pagedate
: Date this page was publishedupdated
: Date this page was updatedweight
: A number, used for sortingdraft
: Boolean. Specifies if this page should be rendered at build timeslug
: String. The slug Zola should use when generating the URLpath
: A manually specified absolute path to this contentaliases
: An array of former urls that lead here, to redirect people herein_search_index
: If set to false and search is enabled, this page will not be includedtemplate
: The template used to render this page. Defaults to./templates/page.html
[taxonomies]
: The taxonomies for this page[extra]
: Your own extra data
Pages have the following information in their context:
content
: The markdown content from the page's filetitle
: The title, if present in the TOML blockdescription
: The descriptiondate
: The date this file was addedupdated
: The date this file was last updatedslug
: The slug name of this filepath
: The path to this filedraft
: true/false, will tell Zola not to include this file during buildscomponents
: The path, split by '/'permalink
: The URL Zola generates for this filesummary
: A provided stringtaxonomies
: The taxonomies list, if anyextra
: The extras blocktoc
: An array ofHeader
objects as derived from the Markdownword_count
: A naive word countreading_time
: A primitive reading time, in minutesearlier
: The content of the previous page, if the section header entry 'sort_by' is set to 'date.'later
: The content of the next pageheavier
: The content of the previous page, if the section header entry 'sort_by' is set to 'weight'lighter
: The content of the next pageyear
: Year as a number.month
: Month as a number.day
: Day as a number.assets
: An array of assets available to this page.ancestors
: An array of parent paths, with the root being the last one.
Pagination
Pagination is provided by a Paginator
object available to the section page.
The paginator will automatically generate multiple pages for the section, and
will provide links to earlier/later pages within the collection.
Shortcodes
Shortcodes are chunks of HTML or Markdown that you can store in the
./templates/shortcodes
folder. Shortcodes will be processed for variables, and
Zola will create a corresponding named hook that will take those variables as
named parameters, much like a Tera function, and return the processed HTML.
Internal links
The relationship between a Markdown file and its generated content is
deterministic, but not always readily apparent. If you want to link to content
in another markdown file, you can use the link syntax [my link](@/pages/about.md#example-code)
, which will generate a URL to the generated
copy of that page, and will provide a header link to the header entitled
"Example Code".
Taxonomies
Taxonomies are a primitive organizational mechanism. You can create a list of
taxonomies in the config.toml
file, and then provide entries for those
taxonomies in pages; those pages will then be included in the taxonomies
collection. The Taxonomy pages are generated with list of various taxonomies
and the collections of pages that relate to the taxonomy.