{% extends "base.html" %} {% load i18n staticfiles mezzanine_tags %} {% block meta_title %}Upcoming and Recent Sermons{% endblock %} {% block title %}Upcoming and Recent Sermons{% endblock %} {% block full_width_content %}
{% if sermon_today %}

Today's Sermon

{% if user.is_authenticated %}{% endif %} {% for sermon in sermon_today %} {% include "mezzanine_sermons/includes/sermon_row.html" %} {% endfor %}
Title Passage Preacher Date FilesAudio
{% endif %} {% if sermons_pastfive %}

Past Five Sermons

{% if user.is_authenticated %}{% endif %} {% for sermon in sermons_pastfive %} {% include "mezzanine_sermons/includes/sermon_row.html" %} {% endfor %}
Title Passage Preacher Date FilesAudio
{% endif %} {% if sermons_nextfive %}

Upcoming Sermons

{% if user.is_authenticated %}{% endif %} {% for sermon in sermons_nextfive %} {% include "mezzanine_sermons/includes/sermon_row.html" %} {% endfor %}
Title Passage Preacher Date FilesAudio
{% endif %}
{% endblock %}