aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill/templates/archives.html
blob: e5917061481923c226ac937243bd49bcaff1178b (plain)
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 de {{ SITENAME }}{% endblock %}
{% block content %}  

<div class="blogItem">
<dl>
						<h2>Archives de {{ SITENAME }}</h2>
						{% for article in dates %}
                                                    <dt>{{ article.locale_date }}</dt>
                                                    <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
                                                    
                                                {% endfor %}
                                                </dl>


</div>



{% endblock %}