-
Notifications
You must be signed in to change notification settings - Fork 15
/
events.ics
37 lines (37 loc) · 1.06 KB
/
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
---
layout: null
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:https://techworkersberlin.com/
METHOD:PUBLISH
BEGIN:VTIMEZONE
TZID: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{% for post in site.events %}
BEGIN:VEVENT
UID:{{ post.date | date: "%Y%m%d" }}@techworkersberlin.com
ORGANIZER;CN="Berlin TWC":MAILTO:[email protected]
LOCATION:Berlin
SUMMARY:{{ post.title | remove: ',' | remove: ';' }}
DESCRIPTION:Event starts at {{ post.date | date: "%H:%M" }} Berlin time. More info at {{ site.url }}{{ post.url }}
CLASS:PUBLIC
DTSTART:{{ post.date | date: "%Y%m%dT%H%M00" }}
DTEND:{{ post.end_date | default: post.date | date:'%s' | plus:7200 | date: "%Y%m%dT%H%M00" }}
DTSTAMP:{{ "now" | date: "%Y%m%dT%H%M00" }}
END:VEVENT{% endfor %}
END:VCALENDAR