{% extends "layout.html" %} {% block feed %} {% endblock %} {% block content %} {% for edition in latest %}

{{ edition.title }}

{% if edition.author_name %} {{ edition.author_name }} | {% endif %} {{ edition.newsletter.name }}

{% if edition.description %}
{% autoescape off %}

{{ edition.description|truncatewords_html:60 }}

{% endautoescape %}
{% endif %}
{% empty %}

Oh no! There are no editions available. Try checking out some blog posts.

{% endfor %} {% endblock %}