Newer
Older
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
---
layout: null
---
BEGIN:VCALENDAR
VERSION:2.0
METHOD:PUBLISH
PRODID:-//Events//Cool Free Software//EN
CALSCALE:GREGORIAN
X-WR-CALNAME:fslab-events
X-WR-TIMEZONE:Europe/Berlin
BEGIN:VTIMEZONE
TZID:Europe/Berlin
BEGIN:DAYLIGHT
TZOFFSETFROM:+0100
DTSTART:19810329T020000
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=-1SU
TZNAME:MESZ
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:+0200
DTSTART:19961027T030000
RRULE:FREQ=YEARLY;BYMONTH=10;BYDAY=-1SU
TZNAME:MEZ
END:STANDARD
END:VTIMEZONE
{% for post in site.categories.event limit:5 %}
BEGIN:VEVENT
UID:{{ post.date | date: '%s' }}
ORGANIZER;CN="{% if post.organizer %}{{ post.organizer }}{% else %}Free Software Lab{% endif %}"
LOCATION;CHARSET=UTF-8:{% if post.location %}{{ post.location }}{% else %}Free Software Lab{% endif %}
SUMMARY;CHARSET=UTF-8:{{ post.title }}
DESCRIPTION;CHARSET=UTF-8:{{ post.content | strip_html | newline_to_br | replace:'<br />','\\n' | strip_newlines }}
CLASS:PUBLIC
DTSTART;TZID=Europe/Berlin:{{ post.eventstart | date: '%Y%m%dT%H%M%S' }}
DTEND;TZID=Europe/Berlin:{{ post.eventend | date: '%Y%m%dT%H%M%S' }}
DTSTAMP;TZID=Europe/Berlin:{{ post.date | date: '%Y%m%dT%H%M%S' }}
END:VEVENT
{% endfor %}
END:VCALENDAR