forked from techconfit/techconfit.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconferences.ics
More file actions
20 lines (20 loc) · 770 Bytes
/
conferences.ics
File metadata and controls
20 lines (20 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
layout: none
uid_prefix: https://github.com/techconfit/techconfit.github.io/tree/main/
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:https://techconfit.github.io
METHOD:PUBLISH
{% for conference in site.conferences %}BEGIN:VEVENT
UID:{{ page.uid_prefix }}{{ conference.relative_path }}
URL:{{ conference.website }}
DESCRIPTION:{{ conference.website }}{% if conference.location %}
LOCATION:{{ conference.location }}{% endif %}
SUMMARY:{{ conference.name }}{% if conference.location %} ({{ conference.location }}){% endif %}
CLASS:PUBLIC
DTSTART;VALUE=DATE:{{ conference.date_start | date: "%Y%m%d" }}
DTEND;VALUE=DATE:{{ conference.date_end | date: "%s" | plus: 86400 | date: "%Y%m%d" }}
DTSTAMP:{{ site.time | date: "%Y%m%dT%H%M%S" }}Z
END:VEVENT
{% endfor %}END:VCALENDAR