pyro/templates/period_archives.html
Freyja Wildes 7cdaee3da5 [style][template] Make header tag consistent with semantic in pages
Change title page tag for a <h1> from <h2>
2025-07-11 05:17:06 +02:00

14 lines
436 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME|striptags }} - {{ period | reverse | join(' ') }} archives{% endblock %}
{% block content %}
<h1>Archives for {{ period | reverse | join(' ') }}</h1>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}