1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/simple/templates/archives.html

11 lines
274 B
HTML
Raw Normal View History

{% 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 %}