21 lines
650 B
Plaintext
21 lines
650 B
Plaintext
|
BEGIN:VCALENDAR
|
||
|
VERSION:2.0
|
||
|
PRODID:-//cccb//datengarten calendar//EN
|
||
|
CALSCALE:GREGORIAN
|
||
|
METHOD:PUBLISH
|
||
|
{{range .Pages -}}
|
||
|
BEGIN:VEVENT
|
||
|
ORGANIZER;CN="CCCB":mailto:datengarten@berlin.ccc.de
|
||
|
SUMMARY:{{.Title}}{{with .Params.subtitle}}: {{.}}{{end}}
|
||
|
UID:{{.Params.no}}@datengarten.berlin.ccc.de
|
||
|
SEQUENCE:0
|
||
|
STATUS:CONFIRMED
|
||
|
DTSTAMP:{{dateFormat "20060102T150405Z" .Params.event.start}}
|
||
|
DTSTART;TZID=Europe/Berlin:{{dateFormat "20060102T150405" .Params.event.start}}
|
||
|
DTEND;TZID=Europe/Berlin:{{dateFormat "20060102T150405" .Params.event.end}}
|
||
|
LOCATION:{{with .Params.location}}{{.}}{{else}}CCCB{{end}}
|
||
|
URL:{{.Permalink}}
|
||
|
END:VEVENT
|
||
|
{{end -}}
|
||
|
END:VCALENDAR
|