kitsu.cafe/content/blog/index.md
2024-10-16 01:25:29 -05:00

401 B

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

{% 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 %}