Skip to content
Snippets Groups Projects
events.ics 1.16 KiB
Newer Older
Lukas Schauer's avatar
Lukas Schauer committed
---
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