14 lines
398 B
HTML
14 lines
398 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Archives of {{ SITENAME }}{% endblock %}
|
|
{% block content %}
|
|
<div class="blogItem .archives">
|
|
<dl>
|
|
<h2>Archives of {{ SITENAME }}</h2>
|
|
{% for article in dates %}
|
|
<dt>{{ article.locale_date }}</dt>
|
|
<dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
|
|
{% endfor %}
|
|
</dl>
|
|
</div>
|
|
{% endblock %}
|