Files
pelican-themes/lightweight/templates/archives.html

22 lines
470 B
HTML

{% 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 %}