1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/templates/archives.html
2010-10-30 00:58:32 +01:00

13 lines
305 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h2>
<dl>
{% for date, articles in dates %}
{% for article in articles %}
<dt>{{ date }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
{% endfor %}
</dl>
{% endblock %}