1
0
Fork 0
forked from github/pelican
pelican-theme/pelican/themes/brownstone/templates/archives.html
2010-12-17 09:42:04 +01:00

19 lines
859 B
HTML

{% 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.date.strftime('%a %d %B %Y') }}</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 %}