{% extends "templates/layout.html" %} {% block content %}
← back

Blog

My blog posts.

All Posts

{% for group in posts_by_year %}
{{ group.key }}
    {% for post in group.value %}
  • {{ post.title }} {% if post.summary is not empty %}
    -- {{ post.summary }} {% endif %}
  • {% endfor %}
{% endfor %}
{% endblock %}