-
Notifications
You must be signed in to change notification settings - Fork 1
/
events.ics
24 lines (24 loc) · 995 Bytes
/
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
---
layout: none
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//DevRelOps Club//Developer Events Calendar//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:Developer Events Calendar by DevRelOps.Club
X-WR-TIMEZONE:Asia/Shanghai
X-WR-CALDESC:This is a public calenar to hold developer events in China by devrelops.club{% for activity in site.data.calendar.activities %}{% assign entry = activity[1] %}
BEGIN:VEVENT
UID:event-{{entry.id}}/{{ entry.date }}
SUMMARY:{{ entry.name }}
CATEGORIES:{% for category in site.data.calendar.categories %}{% if category.id ==
entry.category %}{{ category.name }}{% endif %}{% endfor %}
DESCRIPTION:{{ entry.description | strip | replace: "[^\r]\n", "\r\n" }}
ORGANIZER;CN={{ entry.organizer }}:mailto:{{ entry.email }}
URL:{{ entry.url }}
LOCATION:{{ entry.location }}
DTSTART;VALUE=DATE:{{ site.time | date: '%Y' }}{{ entry.date | date: "%m%d"}}
DTEND;VALUE=DATE:{{ site.time | date: '%Y' }}{{ entry.date_end | date: "%m%d"}}
END:VEVENT{% endfor %}
END:VCALENDAR