{% extends "sermon/base.html" %} {% block page-class %}sermons{% endblock %} {% block title %}Sermons at {% endblock %} {% block body %} {% load humanize markup typogrify %}

Sermons

{% for sermon in sermons %} {% if forloop.first %}

{{ sermon.title }}

{{ sermon.publish_on|naturalday }}

{{ sermon.body|typogrify|markdown|truncatewords:100}}

Continue reading

{% endif %} {% ifequal forloop.counter 2 %}

{{ sermon.title }}

{{ sermon.publish_on|naturalday }}

{{ sermon.body|typogrify|markdown|truncatewords:100}}

Continue reading

{% endifequal %} {% endfor %} {% endblock %}