-
Notifications
You must be signed in to change notification settings - Fork 5
/
events.ics
67 lines (66 loc) · 3.2 KB
/
events.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
layout: null
---
BEGIN:VCALENDAR
PRODID:http://majug.de/
VERSION:2.0
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-WR-CALNAME:majug
X-WR-TIMEZONE:Europe/Berlin
X-WR-CALDESC:Kommende Termine der Mannheimer Java User Group
{% for post in site.posts limit:10 %}{% capture cache %}
{% assign year = post.date | date: "%Y" %}
{% assign year = year | plus: 0 %}
{% assign month = post.date | date: "%m" %}
{% assign month = month | plus: 0 %}
{% assign day = post.date | date: "%d" %}
{% assign day = day | plus: 0 %}
{% endcapture %}{% assign cache = nil %}BEGIN:VEVENT{% case year %}{% when 2019 %}{% if month == 3 and day < 31 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% elsif month == 10 and day >= 27 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% elsif month > 10 or month < 3 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% else %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T170000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T183000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T170000Z{% endif %}{% when 2018 %}{% if month == 3 and day < 25 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% elsif month == 10 and day >= 28 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% elsif month > 10 or month < 3 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% else %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T170000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T183000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T170000Z{% endif %}{% when 2017 %}{% if month == 3 and day < 26 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% elsif month == 10 and day >= 29 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% elsif month > 10 or month < 3 %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T180000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T193000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T180000Z{% else %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T170000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T183000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T170000Z{% endif %}{% else %}
DTSTART:{{ post.date | date: "%Y%m%d" }}T190000Z
DTEND:{{ post.date | date: "%Y%m%d" }}T203000Z
DTSTAMP:{{ post.date | date: "%Y%m%d" }}T190000Z{% endcase %}
UID:{{ post.date | date: "%Y%m%d" }}@majug.de
ORGANIZER;CN="majug² Java User Group Mannheim":MAILTO:[email protected]
LOCATION:{{ post.location | default: "Uni Mannheim, Raum C013, A5 6, 68161 Mannheim" }}
SUMMARY:{{ post.title }} ({{ post.speaker }})
DESCRIPTION:{{ site.url }}{{ post.url }}
URL:{{ site.url }}{{ post.url }}
END:VEVENT
{% endfor %}END:VCALENDAR