micron-blog/theme/templates/period_archives.mu

11 lines
260 B
Text
Raw Permalink Normal View History

2023-05-16 23:34:27 +03:00
{% extends "base.mu" %}
{% block content %}
>Archives for {{ period | reverse | join(' ') }}
{% for article in dates %}
+[{{ article.locale_date }}]
2023-05-24 00:04:11 +03:00
>>>>`[`!{{ article.title }}`!`:/page/{{ article.url }}]
2023-05-16 23:34:27 +03:00
>>>>{{ article.summary }}
{% endfor %}
{% endblock %}