{% extends "base.html" %} {% block title %}Events — {{ brand }}{% endblock %} {% block content %}

Events

Meetings, workshops, and client check-ins.

{% if not events %}
No events yet. Check back soon.
{% endif %} {% for e in events %}
{{ e.title }}
{{ (e.start_dt or e.start)|string }}{% if e.location %} • {{ e.location }}{% endif %}
{% if e.desc %}

{{ e.desc }}

{% endif %} {% if e.rsvp %}RSVP{% endif %}
{% endfor %}
{% endblock %}