theme/templates/archives.html@5ce5f3046c0b
theme/templates/archives.html
Wed, 12 Jul 2023 21:35:29 +0200
- author
- David Douard <david.douard@sdf3.org>
- date
- Wed, 12 Jul 2023 21:35:29 +0200
- changeset 149
- 5ce5f3046c0b
- parent 36
-
9507107a1133
- permissions
- -rw-r--r--
Add a blog entry for the Numworks N0110 repair
{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h1>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}