forked from AndroidStudyGroup/conferences
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconferences.ics
24 lines (24 loc) · 836 Bytes
/
conferences.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
uid_prefix: https://github.com/marandaneto/flutter-conferences/tree/gh-pages/
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:https://www.flutterconferences.com/
METHOD:PUBLISH
{%- for conference in site.conferences -%}
{%- if conference.status == null %}
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
{%- endif -%}
{%- endfor %}
END:VCALENDAR