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

14 lines
398 B
HTML
Raw Permalink Normal View History

2023-07-20 19:34:24 +00:00
{% extends "base.html" %}
{% block title %}Archives of {{ SITENAME }}{% endblock %}
{% block content %}
2023-07-21 02:37:13 +00:00
<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>
2023-07-20 19:34:24 +00:00
{% endblock %}