aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill-en/templates/archives.html
blob: c485aebfdecc4a98c3d2fc65ce4bd96a2a91519f (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 %}Archives of {{ SITENAME }}{% endblock %}
{% block content %}  

<div class="blogItem">
<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 %}