{% extends "blog_layout.html" %} {% from "macros/pagination.html" import render_pagination %} {% block title %}The Transcript{% endblock %} {% block blog_body %}

The Transcript

{% for post in this.pagination.items %}

{{ post.title }}

{{ post.summary }} Read more …

by {% if post.twitter_handle %} {{ post.author or post.twitter_handle }} {% else %} {{ post.author }} {% endif %} on {{ post.pub_date|dateformat }}

{% endfor %} {% if this.pagination.pages > 1 %} {{ render_pagination(this.pagination) }} {% endif %} {% endblock %}