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

17 lines
401 B
Markdown

{% extends "../../layouts/page.html" %}
{% block content %}
<ul>
{% for post in blog
| values
| filter(attribute="created_date")
| sort(attribute="created_date")
| reverse %}
<li>
<a href="{{ post.path }}">{{ post.title }}</a>
<small class="muted">{{ post.created_date | date(format="%b %e, %Y") }}</small>
</li>
{% endfor %}
</ul>
{% endblock content %}