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

{{ post.title }}

{% if post.author_name %} {{ post.author_name }} | {% endif %} {{ post.blog.title }}
{% for tag in post.tags.all %} {{ tag.name }} {% endfor %}
{% if post.description %}
{% autoescape off %}

{{ post.description|truncatewords_html:60 }}

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

Oh no! There are no articles available. Try checking out some newsletter editions.

{% endfor %} {% endblock %}