-
Notifications
You must be signed in to change notification settings - Fork 50
/
serg-events.ics
38 lines (38 loc) · 1.01 KB
/
serg-events.ics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: none
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:http://se.ewi.tudelft.nl/events
X-WR-CALNAME:serg
CALSCALE:GREGORIAN
BEGIN:VTIMEZONE
TZID:Europe/Berlin
TZURL:http://tzurl.org/zoneinfo-outlook/Europe/Berlin
X-LIC-LOCATION:Europe/Berlin
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
TZOFFSETTO:+0200
TZNAME:CEST
DTSTART:19700329T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0100
TZNAME:CET
DTSTART:19701025T030000
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
END:STANDARD
END:VTIMEZONE
{% assign items = site.events | reverse %}
{% for post in items limit:30 %}BEGIN:VEVENT
UID:{{ post.id | slugify }}@se.ewi.tudelft.nl
ORGANIZER;CN="SERG":MAILTO:[email protected]
LOCATION:{{ post.where }}
SUMMARY:{{ post.speaker }}: {{ post.title }}
CLASS:PUBLIC
DTSTART;TZID=Europe/Berlin:{{ post.date | date: "%Y%m%d" }}T{{post.start | replace: ":", ""}}00
DTEND;TZID=Europe/Berlin:{{ post.date | date: "%Y%m%d" }}T{{post.end | replace: ":", ""}}00
END:VEVENT
{% endfor %}END:VCALENDAR