]> git.somenet.org - somenet/www-somenet-org.git/blob - theme/templates/archives.html
content/ntp.md
[somenet/www-somenet-org.git] / theme / templates / archives.html
1 {% extends "base.html" %}
2 {% block content %}
3 <section id="content">
4 <h1>Archives for {{ SITENAME }}</h1>
5
6 <dl>
7 {% for article in dates %}
8         <dt>{{ article.locale_date }}</dt>
9         <dd><a href='{{ article.url }}'>{{ article.title }}</a></dd>
10 {% endfor %}
11 </dl>
12 </section>
13 {% endblock %}