aboutsummaryrefslogtreecommitdiffstats
path: root/brownstone/templates/archives.html
blob: 5adaacb6eaf9d4c78299f83d5955f99fa1f31698 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}
{% block title %}Archives de {{ SITENAME }}{% endblock %}
{% block content %}  
                        	<div id="content">
					<div class="post">
					<dl>
						<h2 class="title">Archives de {{ SITENAME }}</h2>
						{% for article in dates %}
                                                    <dt>{{ article.locale_date }}</dt>
                                                    <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
                                                    <dd>Catégorie : <a href="{{ article.category }}">{{ article.category }}</a></dd>
                                                {% endfor %}
                                                </dl>
					</div>
			        
					<div style="clear: both;">&nbsp;</div>
				</div>
				<!-- end #content -->
{% endblock %}