dimgray

Why I use Zola.

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:

If you wanted to include your blog posts on the home page, use this snippet in the 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.