{% extends "layout.html" %} {% block head_title %} {{ super() }} | Blog {% endblock %} {% block content %}

Blog

{% for item in page.object_list %}

{{ item.title }}

{{ item.date|dt('%B %e, %Y') }}   {{ item.user.first_name }} {% if item.draft %} This post is a draft {% endif %}
{{ item.content|safe }}
{% endfor %} {% if paginator.num_pages > 1 %} {% endif %}
{% endblock %}