1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/simple/templates/archives.html
Florian Preinstorfer bdbba6bc68 fixed generation of archive.html (template simple)
-just one loop needed
-same date format as in index.html (template simple)
2010-12-10 20:28:45 +01:00

11 lines
274 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Archives for {{ SITENAME }}</h2>
<dl>
{% for article in dates %}
<dt>{{ article.date.strftime('%Y-%m-%d %H:%M') }}</dt>
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
{% endfor %}
</dl>
{% endblock %}