<div class="meta_bar_basic_item _meta_bar_basic_item theme_">
<div class="meta_bar_basic_hint _meta_bar_basic_hint"></div>
<div class="event_meta_details">
</div>
</div>
{#
{% include '@partial-meta-bar-basic-item' with {
item: {
same_day: false,
all_day: false,
from: '2023-05-31 17:00:00',
to: '2023-06-13 19:00:00'
}
},
location:'Online',
theme:''
} %}
#}
<div class="meta_bar_basic_item {{ class }}_meta_bar_basic_item theme_{{ theme }}">
<div class="meta_bar_basic_hint {{ class }}_meta_bar_basic_hint">{{ item.label }}</div>
<div class="event_meta_details">
{% if item.from and item.to %}
<div class="event_meta_detail event_meta_detail_date">
<span class="event_meta_detail_icon">{{ icon('calendar') }}</span>
<span class="event_meta_detail_hint">Time: </span>
<span class="event_meta_detail_label">
<span class="event_meta_detail_label_date">
{{ item.start|date("M d, Y") }}
{% if not item.same_day %}
-
{{ item.end|date("M d") }}
{% endif %}
</span>
</span>
</div>
{% endif %}
{% if item.from and item.to %}
<div class="event_meta_detail event_meta_detail_time">
<span class="event_meta_detail_icon">{{ icon('clock') }}</span>
<span class="event_meta_detail_hint">Location: </span>
<span class="event_meta_detail_label">
<span class="event_meta_detail_label_time">{{ item.start|date("g:i A") }}
{% if item.same_day and (item.start != item.end) %}
-
{{ item.end|date("g:i A") }}
{% endif %}
</span>
</span>
</div>
{% endif %}
{% if location %}
<div class="event_meta_detail">
<span class="event_meta_detail_icon">{{ icon('place') }}</span>
<span class="event_meta_detail_hint">Location: </span>
<span class="event_meta_detail_label">{{ location }}</span>
</div>
{% endif %}
</div>
</div>
No notes defined.