kitsu.cafe/content/projects/index.md

19 lines
456 B
Markdown
Raw Permalink Normal View History

2024-10-16 08:25:29 +02:00
{% extends "../../layouts/page.html" %}
{% block content %}
<ul>
{% for project in projects
| values
| filter(attribute="created_date")
| sort(attribute="created_date")
| reverse %}
<li>
<a href="{{ project.link }}">{{ project.title }}</a>
<small class="muted">{{ project.created_date | date(format="%b %e, %Y") }}</small>
<p>{{ project.description }}</p>
</li>
{% endfor %}
</ul>
{% endblock content %}