-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathevents.ics
20 lines (20 loc) · 884 Bytes
/
events.ics
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:https://studentrobotics.org/
METHOD:PUBLISH
{% assign sorted = site.events | sort: 'date' | where_exp:"item", "item.date" %}
{% for event in sorted %}BEGIN:VEVENT
UID:{{ event.url | prepend: site.baseurl | prepend: site.url }}
DTSTART;TZID={{ site.timezone }}{% if event.time_tbc %};VALUE=DATE:{{ event.date | date: "%Y%m%d" }}{% else %}:{{ event.date | date: "%Y%m%dT%H%M%S" }}{% endif %}
{% if event.end_date %}DTEND;TZID={{ site.timezone }}{% if event.time_tbc %};VALUE=DATE:{{ event.end_date | date: "%Y%m%d" }}{% else %}:{{ event.end_date | date: "%Y%m%dT%H%M%S" }}{% endif %}{% endif %}
DTSTAMP:{{ event.date | date: "%Y%m%dT%H%M%S" }}
CLASS:PUBLIC
DESCRIPTION:See
{{ event.url | prepend: site.baseurl | prepend: site.url }}
for details.
LOCATION:{{ event.location }}
SUMMARY:{{ event.title }}
END:VEVENT
{% endfor %}END:VCALENDAR