pyro/templates/index.html
Freyja Wildes 61952116b6 Restarted the project from zero
This theme was started years ago when I was first attempting to build a
blog and personal website using Pelican. In February 2025, I retrieved
it from an server I had. It was then in a very early stage. I reworked
it completely with more modern CSS/HTML (things had changed a *lot*).

This theme aims to be simple, accessible, readable. My own needs and
preferences influence the choicies I make.
2025-02-16 14:11:49 +01:00

13 lines
299 B
HTML

{% extends 'base.html' %}
{% block content %}
{% block title%}
{% endblock %}
<!-- A wrapper for all the blog posts -->
{% include 'pagination.html' %}
{% for article in articles_page.object_list %}
{% include 'post.html' %}
<hr>
{% endfor %}
{% include 'pagination.html' %}
{% endblock content %}