blog/themes/waterspill-en/templates/archives.html
2023-07-20 22:37:13 -04:00

14 lines
398 B
HTML

{% extends "base.html" %}
{% block title %}Archives of {{ SITENAME }}{% endblock %}
{% block content %}
<div class="blogItem .archives">
<dl>
<h2>Archives of {{ SITENAME }}</h2>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
</dl>
</div>
{% endblock %}