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

{{ post.title }}

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