{% if sermon_today %}
Today's Sermon
Title |
Passage |
Preacher |
Date |
Files |
{% if user.is_authenticated %}Audio | {% endif %}
{% for sermon in sermon_today %}
{% include "mezzanine_sermons/includes/sermon_row.html" %}
{% endfor %}
{% endif %}
{% if sermons_pastfive %}
Past Five Sermons
Title |
Passage |
Preacher |
Date |
Files |
{% if user.is_authenticated %}Audio | {% endif %}
{% for sermon in sermons_pastfive %}
{% include "mezzanine_sermons/includes/sermon_row.html" %}
{% endfor %}
{% endif %}
{% if sermons_nextfive %}
Upcoming Sermons
Title |
Passage |
Preacher |
Date |
Files |
{% if user.is_authenticated %}Audio | {% endif %}
{% for sermon in sermons_nextfive %}
{% include "mezzanine_sermons/includes/sermon_row.html" %}
{% endfor %}
{% endif %}