blob: fec9086c8a5d76b605a1a4ff2cabec28138b09b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends 'base.html' %}
{% block title %} {{ SITENAME }} - Archives {% endblock %}
{% block container %}
<section id="content">
<header class="header">
<h2 class="blogpost-title">Archives</h2>
</header>
<dl>
{% for article in dates %}
<dt>{{ article.locale_date }}</dt>
<dd>
<a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
</dd>
{% endfor %}
</dl>
</section>
<br/><br/><br/>
{% endblock %}
{% block footer %}
{% include '_includes/footer.html' %}
{% endblock %}
|