lektor-website/templates/blog-archive/index.html
David Baumgold 10296444df Close <li> tags
Because valid HTML is better than invalid HTML
2016-07-22 11:47:12 -04:00

15 lines
419 B
HTML

{% extends "blog-layout.html" %}
{% 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></li>
{% endfor %}
</ul>
{% endblock %}