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

{{ post.title }}

{% include "blog/post_date.html" %} {% if post.image %}
{% endif %} {{ post.description|safe_markdown|striptags|truncatewords:30 }}
{% endfor %} {% include "base/pagination.html" %}
{% sidebar %}
{% endblock content %}