lektor-website/templates/blog-archive/index.html

15 lines
414 B
HTML
Raw Normal View History

2015-12-22 11:50:18 +01:00
{% extends "blog-layout.html" %}
2015-12-19 14:52:17 +01:00
{% block title %}Archive | The Transcript{% endblock %}
{% block blog_body %}
<h1>The Transcript Archive</h1>
<p>
<a href="{{ '/blog'|url }}">&laquo; back to the blog</a>
<p>
There have been posts in the following years:
<ul>
{% for archive in this.year_archives %}
<li><a href="{{ archive|url }}">{{ archive.year }}</a>
{% endfor %}
</ul>
{% endblock %}