program styles and icons

This commit is contained in:
Lyn Fugmann 2024-09-27 15:36:08 +02:00
parent 79e9051db6
commit e376bc1389
4 changed files with 52 additions and 3 deletions

View file

@ -22,7 +22,7 @@
<li class="timeslot">
<div class="timeslot-container">
<h3 id="{{date}}_{{loop.index}}">
{{ "🔴 " if event.livestream -}}
{% if event.livestream %}{% icon "solid:video", title="Livestream" %}{% endif %}
{{ getLocalized(event.title) }}
</h3>
@ -38,12 +38,14 @@
{% if event.annotation %}
<p class="annotation">
{% icon "solid:exclamation", title=("Notice" if lang == "en" else "Hinweis") %}
{{ getLocalized(event.annotation) }}
</p>
{% endif %}
{% if event.location %}
<p class="location">
{% icon "solid:location-dot", title=("Location" if lang == "en" else "Veranstaltungsort") %}
{{ getLocalized(event.location) }}
</p>
{% endif %}