blog/themes/waterspill-en/templates/archives.html

25 lines
361 B
HTML
Raw Normal View History

2023-07-20 19:34:24 +00:00
{% extends "base.html" %}
{% block title %}Archives of {{ SITENAME }}{% endblock %}
{% block content %}
<div class="blogItem">
<dl>
2023-07-20 20:09:02 +00:00
<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>
2023-07-20 19:34:24 +00:00
</div>
{% endblock %}