aboutsummaryrefslogtreecommitdiffstats
path: root/waterspill/templates/archives.html
blob: bd232433f6e94f4ed04e176abedcdd5fd5b4c2f5 (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.date.strftime('%a %d %B %Y') }}</dt>
                                                    <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
                                                    
                                                {% endfor %}
                                                </dl>


</div>



{% endblock %}