{% extends "base.html" %} {% load i18n staticfiles mezzanine_tags %} {% block meta_title %}{% trans "Sermons" %}{% endblock %} {% block title %}{% trans "Sermons" %}{% endblock %} {% block breadcrumb_menu %}
  • {% trans "Sermons" %}
  • {% endblock %} {% block main %} {% 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 "church/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 "church/includes/sermon_row.html" %} {% endfor %}
    Title Passage Preacher Date FilesAudio
    {% endif %} {% endblock %}