19 lines
386 B
HTML
19 lines
386 B
HTML
|
{% extends "base.html" %}
|
||
|
{% block title %}– Archives{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<article>
|
||
|
<header>
|
||
|
<h2>Archives</h2>
|
||
|
</header>
|
||
|
<div>
|
||
|
<dl>
|
||
|
{% for article in dates %}
|
||
|
<dt>{{ article.locale_date }}</dt>
|
||
|
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
|
||
|
{% endfor %}
|
||
|
</dl>
|
||
|
</div>
|
||
|
</article>
|
||
|
{% endblock %}
|