kitsu.cafe/content/blog/index.md
2024-12-20 07:28:58 -06:00

561 B

{% extends "../../layouts/page.html" %}

{% block head %} {{ super() }}

{% endblock head %}

{% block content %}

    {% for post in blog | values | filter(attribute="created_date") | sort(attribute="created_date") | reverse %}
  • {{ post.title }} {{ post.created_date | date(format="%b %e, %Y") }}
  • {% endfor %}
{% endblock content %}