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

My articles

A collection of my writings and thoughts.

All Articles

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