{% extends 'base.html' %} {% load markup %} {% load comments %} {% block content %} {% if posts %}

{{section_title}}

{% for p in posts %} {% if forloop.counter0|divisibleby:3 %}
{% endif %}

{{p.title}}

{{p.body|truncatechars:200|markdown}}

{% if forloop.counter|divisibleby:3 %}
{% else %} {% if forloop.last %} {%endif%} {% endif %} {% endfor %} {% endif %} {% endblock %}