1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/notmyidea/templates/archives.html
2010-11-20 18:47:40 +00:00

15 lines
352 B
HTML

{% extends "base.html" %}
{% block content %}
<section id="content" class="body">
<h1>Archives for {{ SITENAME }}</h1>
<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>
</section>
{% endblock %}