1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/simple/templates/archives.html
Alexis Metaireau 0951831c64 Merge pull request #243 from alefteris/patch-1
Match closing tag
2012-03-12 04:14:32 -07:00

11 lines
254 B
HTML

{% extends "base.html" %}
{% block content %}
<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>
{% endblock %}