{% extends "layout.html" %} {% block content %}

Church Bulletins

Weekly worship programs and announcements

{% if !bulletins.is_empty() %}
{% for bulletin in bulletins %}

{{ bulletin.title }}

{{ bulletin.date }}

{% if bulletin.scripture_reading %}

{{ bulletin.scripture_reading }}

{% endif %}
View Details {% if bulletin.pdf_path %} Download PDF {% endif %}
{% endfor %}
{% else %}

No bulletins available

Check back soon for new bulletins!

{% endif %}
{% endblock %}