jeffs-pelican-theme/templates/archives.html
2022-11-12 14:33:05 -04:00

14 lines
387 B
HTML

{% extends "base.html" %}
{% block title %}{{ SITENAME }} - Archives{% endblock %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h1>
<dl class="archive">
{% for article in dates %}
<dt class="archive">{{ article.locale_date }}</dt>
<dd class="archive"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}