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

Upcoming Events

Join us for worship, fellowship, and community service

{% if !upcoming_events.is_empty() %}
{% for event in upcoming_events %}

{{ event.title }}

{{ event.start_time }} - {{ event.end_time }}

{{ event.location }}

{% if event.description %}

{{ event.description }}

{% endif %}
{% endfor %}
{% else %}

No upcoming events at this time

Check back soon for new events and activities!

{% endif %}
{% endblock %}