-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnaomod_weekly_seminars.ics
More file actions
38 lines (38 loc) · 1.31 KB
/
naomod_weekly_seminars.ics
File metadata and controls
38 lines (38 loc) · 1.31 KB
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
---
layout: null
---
BEGIN:VCALENDAR
X-WR-CALNAME:Naomod weekly seminars
VERSION:2.0
METHOD:PUBLISH
PRODID: Generated with Naomod website
BEGIN:VTIMEZONE
TZID:Europe/Paris
BEGIN:STANDARD
DTSTART:16010101T030000
TZOFFSETTO:+0100
TZOFFSETFROM:+0200
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=10;BYDAY=-1SU
TZNAME:CET
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010101T020000Z
TZOFFSETTO:+0200
TZOFFSETFROM:+0100
RRULE:FREQ=YEARLY;WKST=MO;INTERVAL=1;BYMONTH=3;BYDAY=-1SU
TZNAME:CEST
END:DAYLIGHT
END:VTIMEZONE{% for cat in site.categories%}{% if cat[0] == "seminar" %}{% for post in cat[1] %}
BEGIN:VEVENT
UID:{{ post.date | date: "%Y%m%d" }}@naomod.github.io
ORGANIZER;CN=Erwan BOUSSE:mailto:erwan.bousse@univ-nantes.fr
LOCATION: See room reservation calendar.
SUMMARY:{% if post.title == "TBA" %}Talk by {{ post.speaker }}{% else %}{{ post.title }}{% endif %}
DESCRIPTION:Speaker: {{ post.speaker }}.\n\n{{ post.content | normalize_whitespace | strip }}
CLASS:PUBLIC
DTSTART;TZID=Europe/Paris:{{ post.date | date: "%Y%m%d" }}T{{post.start}}00
DTEND;TZID=Europe/Paris:{{ post.date | date: "%Y%m%d" }}T{{post.end}}00
DTSTAMP;TZID=Europe/Paris:{{ site.time | date: "%Y%m%dT%H%M%S" }}
LAST-MODIFIED;TZID=Europe/Paris:{{ site.time | date: "%Y%m%dT%H%M%S" }}
END:VEVENT{% endfor %}{% endif %}{% endfor %}
END:VCALENDAR