forked from cccb-website-team/www
21 lines
587 B
Text
21 lines
587 B
Text
BEGIN:VCALENDAR
|
|
VERSION:2.0
|
|
PRODID:-//CCCB//Calendar//DE
|
|
{{ with .Title }}
|
|
X-WR-CALNAME:{{ . }}
|
|
{{ end }}
|
|
CALSCALE:GREGORIAN
|
|
METHOD:PUBLISH
|
|
{{ if and .Date (not .Params.members_only) }}
|
|
BEGIN:VEVENT
|
|
UID:{{ .File.UniqueID }}@berlin.ccc.de
|
|
DTSTAMP:{{ .Date.UTC.Format "20060102T150405Z" }}
|
|
DTSTART:{{ .Date.UTC.Format "20060102T150405Z" }}
|
|
{{ with .Params.event.end }}DTEND:{{ dateFormat "20060102T150405Z" . }}{{ end }}
|
|
SUMMARY:{{ .Title }}
|
|
DESCRIPTION:{{ .Summary | plainify }}
|
|
URL:{{ .Permalink }}
|
|
{{ with .Params.location }}LOCATION:{{ . }}{{ end }}
|
|
END:VEVENT
|
|
{{ end }}
|
|
END:VCALENDAR
|