2024-10-16 08:25:29 +02:00
|
|
|
{% extends "../../layouts/page.html" %}
|
|
|
|
|
2024-12-20 14:28:58 +01:00
|
|
|
{% block head %}
|
|
|
|
{{ super() }}
|
|
|
|
<link rel="stylesheet" href="/static/css/blog.css">
|
|
|
|
{% endblock head %}
|
|
|
|
|
2024-10-16 08:25:29 +02:00
|
|
|
{% block content %}
|
2024-12-20 14:28:58 +01:00
|
|
|
<ul class="blog link-list">
|
2024-10-16 08:25:29 +02:00
|
|
|
{% for post in blog
|
|
|
|
| values
|
|
|
|
| filter(attribute="created_date")
|
|
|
|
| sort(attribute="created_date")
|
|
|
|
| reverse %}
|
|
|
|
<li>
|
2024-12-20 14:28:58 +01:00
|
|
|
<div>
|
|
|
|
<a href="{{ post.path }}">{{ post.title }}</a>
|
|
|
|
<small class="muted">{{ post.created_date | date(format="%b %e, %Y") }}</small>
|
|
|
|
</div>
|
2024-10-16 08:25:29 +02:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endblock content %}
|
|
|
|
|