summaryrefslogtreecommitdiffstats
path: root/kyrias_website/templates/archive.html
blob: 2399c90f13491fe9b4e8945afb26b5a6ab2441fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{% extends 'base.html' %}

{% block content %}
<section>
	<h1>Archive</h1>
	<ul id="archive-list">
	{% for entry in entries %}
		<li>{{ entry.date }}<a href="{{ url_for('entry', name=entry.path) }}">{{ entry.meta.title }}</a></li>
	{% endfor %}
	</ul>
</section>
{% endblock %}