{% 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
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 "church/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 "church/includes/sermon_row.html" %}
{% endfor %}
{% endif %}
{% endblock %}