{% extends "/html/base.html" %} {% block content %}
{% for post in posts %}

{{post.title}}

{% if post.author %}
{{post.author}}
{% endif %}
{{post.date|date:longDate}}
{{post.content|safe}} Continue reading →
{% endfor %}
{% if prev-uri %} « Prev {% endif %} {% if next-uri %} Next » {% endif %}
{% endblock %}