aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap2/templates/archives.html
blob: 42870c22969703e900d5cf511c9c3a7f300541a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}
{% block content %}
<div class="span12">
    <section id="content">
    <h1>Archives for {{ SITENAME }}</h1>

    <dl>
    {% for article in dates %}
        <dt>{{ article.locale_date }}</dt>
        <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
    {% endfor %}
    </dl>
    </section>
</div>
{% endblock %}