{% extends "base.html" %} {% block title %}{{ meeting.title }} — {{ meeting.date | string }}{% endblock %} {% block description %}{{ meeting.title }} on {{ meeting.date | string }} at {{ meeting.location }}.{% endblock %} {% block breadcrumbs %} {% set crumbs = [ {"text": "Meetings Listing", "url": "/meetings/"}, {"text": meeting.title}, {"text": (meeting.date | string) } ] %} {% include "partials/breadcrumbs.html" %} {% endblock %} {% block content %}

{{ meeting.title }}{% if meeting.subtitle %} ({{ meeting.subtitle }}){% endif %}

{{ meeting.date | string }}

{{ meeting.location }}
{{ meeting.address }}

{% if meeting.livestream or meeting.webex %}
{% if meeting.livestream %}

To watch the livestream of tonight's board meeting, join via our YouTube link: {{ meeting.livestream }}

{% endif %} {% if meeting.webex %}

Click here to attend the meeting with the option to provide public comment virtually via Webex. You will be asked to register with your name and a valid email address.

{% endif %}
{% endif %} {% if meeting.attendance %}

Attendance

{% if meeting.attendance.voting %}

Voting Members

{% endif %} {% if meeting.attendance.non_voting %}

Non-Voting Members

{% endif %}
{% endif %} {% include "partials/agenda_outline.html" %} {% if meeting.supporting_links %} {% endif %} {% if meeting.attachments_drive %}

📎 View attachments on Google Drive

{% endif %}
{% endblock %}