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

{{ post.title }}

Published: {{ post.published_date }}

{{ post.description }}

{% endfor %} {% if posts.num_pages > 1 %} {% endif %}
{% endblock content %}