forked from github/pelican
13 lines
318 B
HTML
13 lines
318 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content" class="body">
|
|
<h1>Archives for {{ SITENAME }}</h1>
|
|
|
|
<dl>
|
|
{% for article in dates %}
|
|
<dt>{{ article.date.strftime('%a %d %B %Y') }}</dt>
|
|
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</section>
|
|
{% endblock %}
|