blog.notmyidea.org/mnmlist/templates/archives.html

16 lines
394 B
HTML

{% extends "base.html" %}
{% block content %}
<header>
<h1>Archives</h1>
</header>
<section id="content" class="body">
<dl>
{% for year, articles in dates | groupby("date.year") | reverse %}
<dt>{{ year }}</dt>
{% for article in articles %}
<dd><a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
{% endfor %}
</dl>
</section>
{% endblock %}