blob: 1770aae22bd967c20a1f04358c0b72d1c61e7e0e (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block content %}
<div id="content">
<h3>Archives</h3>
<table>
<tbody>
{% for article in dates %}
<tr>
<td class="date">{{ article.locale_date }}</td>
<td><a href='{{ article.url }}'>{{ article.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}
|