{% extends "base.html" %} {% load martortags blog %} {% block title %}Blog Posts{% endblock %} {% block content %}
{% if view.category %}

{{ view.category.name }}

{{ view.category.description }}

{% endif %} {% 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 %}