Rooster



They scraped the blue,
and peeled the reds and greens.
In place of brown, now grey.
More more yelled them!
We’re painting bricks,
and sculpting towers,
to the one who dictates.

Zola is a static site generator written in Rust. I wanted to bootstrap this personal blog and host it cheaply on a CDN. I shortlisted Zola for these reasons:
sudo dnf install zola on my Fedora PC.{{ shortcode() }} and syntax highlighting.<br>.index.html template:{% block content %}
{% set posts = get_section(path="blog/_index.md") %}
{% for page in posts.pages %}
<article>
{{ page.content | safe }}
</article>
{% endfor %}
{% endblock content %}
There’s more to Zola that I’ve yet to delve into.