-
Notifications
You must be signed in to change notification settings - Fork 40
/
calendar.ics
28 lines (28 loc) · 972 Bytes
/
calendar.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
---
layout: null
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:http://opendreamkit.org/
METHOD:PUBLISH
{% assign events = site.data.events.InternalEvents | sort:"start" | reverse %}{% for event in events %}BEGIN:VEVENT
UID:{{event.title | slugify | remove:"-" }}@opendreamkit.org
ORGANIZER;CN="OpenDreamKit":MAILTO:[email protected]
LOCATION: {{ event.location}}
SUMMARY:{{ event.title }}
CLASS:PUBLIC
DTSTART:{{ event.start | remove:"-"}}
DTEND:{{ event.end | remove:"-" }}
DTSTAMP:{{ event.start | remove:"-" }}
END:VEVENT
{% endfor %}{% assign events = site.data.events.ExternalEvents | sort:"start" | reverse %}{% for event in events %}BEGIN:VEVENT
UID:{{event.title | slugify | remove:"-" }}@opendreamkit.org
ORGANIZER;CN="OpenDreamKit":MAILTO:[email protected]
LOCATION:
SUMMARY:{{ event.title }}
CLASS:PUBLIC
DTSTART:{{ event.start | remove:"-"}}
DTEND:{{ event.end | remove:"-" }}
DTSTAMP:{{ event.start | remove:"-" }}
END:VEVENT
{% endfor %}END:VCALENDAR