-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconcerts.ics
46 lines (45 loc) · 1.49 KB
/
concerts.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: null
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:{{ site.url }}
URL:{{ site.url }}/concerts.ics
NAME: Profundo Bono Performances
X-WR-CALNAME: Profundo Bono Performances
DESCRIPTION: Scheduled performances for Profundo Bono in Delaware
X-WR-DESC: Scheduled performances for Profundo Bono in Delaware
TIMEZONE-ID:America/New_York
X-WR-TIMEZONE:America/New_York
REFRESH-INTERVAL;VALUE=DURATION:PT24H
X-PUBLISHED-TTL:PT24H
METHOD:PUBLISH
BEGIN:VTIMEZONE
TZID:America/New_York
X-LIC-LOCATION:America/New_York
BEGIN:DAYLIGHT
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
TZNAME:EDT
DTSTART:19700308T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
TZNAME:EST
DTSTART:19701101T020000
RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU
END:STANDARD
END:VTIMEZONE
{% for season in site.data.concerts %}{% for concert in season.concerts %}BEGIN:VEVENT
UID:{{ concert.date | date: "%Y%m%d" }}@profundobono.com
ORGANIZER;CN="Organizer Name":MAILTO:[email protected]
LOCATION:{{ concert.address | replace: ",", "\," }}
SUMMARY:Concert: {{ concert.title }}
CLASS:PUBLIC
DTSTART;TZID=America/New_York:{{ concert.date | date: "%Y%m%d" }}{% if concert.time %}T{{ concert.time | date: "%H%M" }}00{% endif %}
DTEND;TZID=America/New_York:{{ concert.date | date: "%Y%m%d" }}{% if concert.time %}T{{ concert.time | date: "%H" | plus: 2 }}0000{% endif %}
DTSTAMP:{{ concert.date | date: "%Y%m%d" }}T170000Z
END:VEVENT
{% endfor %}{% endfor %}END:VCALENDAR