mirror of
https://github.com/netz39/www.netz39.de.git
synced 2025-01-18 20:10:12 +01:00
feat: add ics feed
This commit is contained in:
parent
644cb4361d
commit
e214c6482f
1 changed files with 19 additions and 0 deletions
19
events.ics
Normal file
19
events.ics
Normal file
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
layout: null
|
||||
---
|
||||
BEGIN:VCALENDAR
|
||||
VERSION:2.0
|
||||
PRODID:{{ site.url }}
|
||||
METHOD:PUBLISH{% for event in site.events limit:3 %}
|
||||
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 {{ site.url }}{{ event.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
|
Loading…
Reference in a new issue