-
Notifications
You must be signed in to change notification settings - Fork 8
/
cal.ics
26 lines (26 loc) · 988 Bytes
/
cal.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
---
layout: null
---
BEGIN:VCALENDAR
VERSION:2.0
PRODID:http://live.webuild.sg/
X-WR-CALNAME:We Build LIVE Podcast
{% for post in site.posts %}BEGIN:VEVENT
UID:{{ post.date | date: "%Y%m%d" }}@live.webuild.sg
LOCATION:http://live.webuild.sg/
SUMMARY:{% if post.title %}{{ post.title }}{% else %}{{ post.number}} {{ post.topic }} with {{ post.guest }}{% endif %}
CLASS:PUBLIC
DTSTART:{{ post.date | date: "%Y%m%d" }}T030000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T040000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T030000Z
END:VEVENT
{% endfor %}BEGIN:VEVENT
LOCATION:http://live.webuild.sg/
CLASS:PUBLIC
{% if site.next_guest %}SUMMARY:{{ site.next_episode}} {{ site.next_guest }}
UID:{{ site.next_podcast_start_time | date: "%Y%m%d" }}@live.webuild.sg
DTSTART:{{ site.next_podcast_start_time | date: "%Y%m%d" }}T030000Z
DTEND:{{ site.next_podcast_end_time | date: "%Y%m%d" }}T040000Z
DTSTAMP:{{ site.next_podcast_start_time | date: "%Y%m%d" }}T030000Z
{% endif %}END:VEVENT
END:VCALENDAR