blob: 2f731f8fe504591737330d14769833cedd8c0490 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block content %}
<div id="content">
<div class="inner">
<article class="box post post-excerpt">
<h2>Archives for {{ SITENAME }}</h2>
<header>
{% for article in dates %}
<h2>{{ article.locale_date }}</h2>
<p><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></p>
<p>{{article.headline}}</p>
{% endfor %}
</header>
</article>
</div>
</div>
{% endblock %}
|