blob: 8a6b425b55a814a7f610cdb2f84b1d429005f4d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{% extends "base.html" %}
{% block title %}{{ SITENAME }} - {{ period | reverse | join(' ') }} Archives{% endblock %}
{% block content %}
<main>
<section id="list">
<h2>Archives for {{ period | reverse | join(' ') }}</h2>
<ul>
{% for article in dates %}
<li><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a>
<time>{{ article.date|strftime('%b %Y') }}</time>
</li>
{% endfor %}
</ul>
</section>
</main>
{% endblock %}
|