www.netz39.de/events.ics
David Kilias 83f543da85 fix: include all events in calendar feed
tht is a workaround and needs to be changed to a sensibly filtered list
2023-11-04 09:31:02 +01:00

19 lines
No EOL
658 B
Text

---
layout: null
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:{{ site.url }}
METHOD:PUBLISH{% for event in site.events %}
BEGIN:VEVENT
UID:{{ event.event_date | date: "%Y%m%d" }}@netz39.de
ORGANIZER;CN="Netz39 Team":MAILTO:kontakt@netz39.de
LOCATION:Netz39 e.V.\, Leibnizstraße 32\, 39104 Magdeburg
SUMMARY:{{ event.title | remove: ',' | remove: ';' }}
DESCRIPTION:Meetings start at 19:00PM Berlin time. More info at {{ event.url | absolute_url }}
CLASS:PUBLIC
DTSTART:{{ event.event_date | date: "%Y%m%d" }}T170000Z
DTEND:{{ event.event_date | date: "%Y%m%d" }}T190000Z
DTSTAMP:{{ event.event_date | date: "%Y%m%d" }}T170000Z
END:VEVENT{% endfor %}
END:VCALENDAR