blag/theme-fred/templates/archives.html

17 lines
456 B
HTML
Raw Normal View History

2016-08-03 02:36:43 -04:00
{% extends "base.html" %}
{% block content %}
2023-03-24 12:41:18 -04:00
<section id="content" class="body">
<h1>Archives for {{ SITENAME }}</h1>
<dl>
{% for article in dates %}
<dt>
{{ article.locale_date }}
</dt>
<dd>
<a href='{{ article.url }}'>{{ article.title }}</a>
</dd>
{% endfor %}
</dl>
</section>
2016-08-03 02:36:43 -04:00
{% endblock %}