{{ meeting.time_formatted }} |
{% block meeting_title %}{{ link(meeting.url, meeting.name, meeting.id) }}{% endblock %}
{% set codes = codify(meeting.types)|join(' ') %}
{% block meeting_codes %}
{% if codes %}
{{ codes }}
{% endif %}
{% if meeting.location %}
{{ link(meeting.location_url, meeting.location) }}
{% endif %}
{% endblock %}
|
{% if meeting.is_conference %}
{% if config.show_links %}
{% if meeting.conference_url %}
{% block zoom_link %}{{ link(meeting.conference_url, 'Join on Zoom') }}{% endblock %}
{% endif %}
{% if meeting.conference_phone %}
{% if meeting.conference_url and meeting.conference_phone %}|{% endif %}
{% block phone_link %}{{ link('tel:' + meeting.conference_phone, 'Join on Phone') }}{% endblock %}
{% endif %}
{% endif %}
{% if meeting.conference_notes %}
{% if meeting.conference_url or meeting.conference_phone %} {% endif %}
{{ meeting.conference_notes }}
{% endif %}
{% endif %}
{% if meeting.notes %}
{% if meeting.is_conference %} {% endif %}{{ meeting.notes_list|join('|') }}
{% endif %}
{% if meeting.zipcode %}
{% block meeting_address %}
{{ link('https://www.google.com/maps/search/?api=1&query=' + meeting.latlon, meeting.formatted_address) }}
{% endblock %}
{% endif %}
|