{% extends "base.html" %} {% load dractags %} {% block title %}Blog Posts{% endblock %} {% block content %}
{% for post in posts %}

{{ post.title }}

Published: {% if post.updated_date != post.published_date %} Updated: {{ post.updated_date }} {% endif %}
{% if post.image %}
{% endif %} {{ post.description|safe_markdown }}
{% endfor %} {% if posts.num_pages > 1 %} {% endif %}
{% endblock content %}