🛫

Moving to Zola

First article of the new year, and I tell myself that this time, this time I’ll actually stick to writing!

As every developer knows, you can’t just go and start writing articles, you need to build the platform which they will be hosted on first!

My previous blog setup

So in the previous iteration, I was writing posts as Notion pages, and then hitting their API at build time from Netlify to construct a SvelteKit static site.

Somewhat custom, and really annoying to be wrangling the many many nested blocks Notion uses in its proprietary markup.

Bah. I want the whole thing to be:

I don’t want to rely on Notion, pure markdown is plenty powerful enough for me to pen my ideas down.

Hola, Zola

Enter Zola.

Straight out of the gate, I should mention its written in Rust. Very important feature!

Also its 🔥 Blazingly Fast 🔥 of course.

Images, assets, Sass and syntax highlighting are all handled out of the box. You just follow some conventions on where to place content and you’re away.

Also you can get started blazingly quickly by using a built in theme. I picked the After dark theme as my starting point. Installed theme files go in the themes/[THEME] directory, and the chosen THEME placed in the config.toml - which is a file Zola looks at for its core configuration.

I prefer to keep magic to a minimum so my first move was to blow away the themes/ directory and manually copy across the pieces of the theme I actually wanted - just a taste of the styles and the main templates.

Each theme directory follows the same structure as the top level folder conventions (`content`, `sass`, `templates`, etc)

Of course this broke everything, and it took a good bit of debugging to get everything running again, but I dang sure learned how all of the pieces fit together.

Tera Templates

At its core, Zola is a wrapper around the Tera library.

👆 A template engine for Rust based on Jinja2/Django

Its pretty nice, pretty ergonomic, and funnily enough yes I am a fan of the {{ Mustache flavoured variables }}

All the templates live in… wait for it… the templates/ directory.

There’s a convention around which templates are used for which resource type, but basically index.html is the main page, page.html is then the template used for every content page, and finally section.html is for the listing pages - content directories with a _index.md file. Most of these can be overwritten on a file by file basis, but strong conventions can be pretty helpful.

A very powerful feature of Tera, is the ability to extend templates. Any template can define blocks which can then be overwritten in later templates.

So say the index.html (that’s the top level template remember) looks like this:

{% block content %}
    {% block header %}
        <header>Head of the page</header>
    {% endblock header %}
    <p>Some shared content</p>
{% endblock content %}

Each content page’s page.html template can extend and override pieces of this template

{% extends "index.html" %}

{% block content %}
    {% block header %}
        {{ print(text="super()") }}    {% endblock header %}
    <p>Page specific content</p>
{% endblock content %}

In this example, the header block will delegate to the main index.html, but the rest of the content block is overwritten. As you can imagine, this feature alone opens up some interesting opportunities for composition.

Content

Zola takes a slight change to my usual style of Markdown writing, for the frontmatter (that’s the metadata at the start of a markdown file) I’m used to using sections surrounded by a triple - line, and in YAML syntax. For Zola’s preferred flavour, the delimiter is a + and TOML style syntax.

I actually don’t mind this. The plus’s look very clear, and also pretty funky with ligatures turned on 🕺 so I was happy to make the switch.

Drawbacks

One drawback/area for improvement is the editor integration for Tera templates. I’m sorely in need of good syntax highlighting (yes I will be looking into writing my own Treesitter grammar… watch this space!), and ideally some basic LSP functionality - I crave Go to definition in all contexts.

Also, Javascript feels like a second class citizen here. Its not even mentioned in Zola’s docs. Basically its a handle it urself kind of a deal. Which is fine, its actually quite refreshing to not need to touch the mess that is the npm ecosystem/js toolchain. Keep it simple stupid!

When client side interactivity does come into play, I think a simple plain .js file in the static/ directory will be enough. Everything in static is copied over to the output folder.

So if fancy packages or compile to JS languages feel like being played with, just outputting the built js file to static will give the frontend access. Perhaps this the subject for another day, for now I’m happy with the new, simplified set up!

References

This repo is clearly the most 🔥 Blazingly Fast 🔥 hello world out there