blob: 8f8a8a5faeace80837a4aec3487a305a76eabb43 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "base.html" %}
{%block title %}{{ SITENAME }} - Archives{%endblock%}
{% block content %}
<h2 class="page_title">Archives</h1>
<table id="archives">
<tbody>
<tr>
<th>Date</th>
<th>Article</th>
</tr>
{% for article in dates %}
<tr>
<td>{{ article.date.locale_date }}</td>
<td><a href='{{ article.url }}'>{{ article.title }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}
|