{% extends "base.html" %} {% block content %}
📖 Blog

Welcome to my blog! This is where I'll post longer content about stuff I'm working on. I'm working out some channels for posting day-to-day short form shit too so keep an eye out for that.

Latest Posts

    {% set current_year = now() | date(format="%Y") | int %} {% for i in range(start=0, end=current_year - 2024) %}
  • {{current_year - i}}
      {% for post in section.pages %} {% if post.year == current_year - i %}
    • {{post.title}} - {{post.date}}
    • {% endif %} {% endfor %}
  • {% endfor %}
{% endblock content %}