2015-12-22 11:50:18 +01:00
|
|
|
{% extends "blog-layout.html" %}
|
2015-12-19 14:52:17 +01:00
|
|
|
{% block title %}{{ this.date|dateformat('MMMM yyyy') }} Archive | The Transcript{% endblock %}
|
|
|
|
{% block blog_body %}
|
|
|
|
<h1>The Transcript, {{ this.date|dateformat('MMMM yyyy') }}</h1>
|
|
|
|
<p>
|
|
|
|
<a href="{{ this.year_archive|url }}">« Back to {{ this.year }}</a>
|
|
|
|
<ul>
|
|
|
|
{% for post in this.items %}
|
|
|
|
<li><a href="{{ post|url }}">{{ post.title }}</a> by {{ post.author }} on {{ post.pub_date|dateformat }}
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|