blob: cee6745574855af6dac39c7f3b124fd6c46e8195 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends 'layout.html' %}
{% block content %}
<section>
<h1>{{ title }}</h1>
<ul id="archive-list">
{% for entry in entries %}
<li>{{ entry['date'] }} — <a href="{{ entry['file'] }}.html">{{ entry['title'] }}</a></li>
{% endfor %}
</ul>
</section>
{% endblock %}
|