forked from laurens/fediversity_website
25 lines
1.1 KiB
Plaintext
25 lines
1.1 KiB
Plaintext
BEGIN:VCALENDAR
|
|
VERSION:2.0
|
|
CALSCALE:GREGORIAN
|
|
BEGIN:VEVENT
|
|
{{ if not (isset .Params "h") }}
|
|
SUMMARY:{{ .Title }}
|
|
DESCRIPTION:{{ trim (.Content | plainify) "\n" }} Voor meer informatie zie {{ .Site.Params.LiveSiteUrl }}{{ .Permalink }}
|
|
DTSTART;TZID=Europe/Amsterdam:{{ dateFormat "20060102T150405" .Params.event_start }}
|
|
DTEND;TZID=Europe/Amsterdam:{{ dateFormat "20060102T150405" .Params.event_end }}
|
|
{{ if .Params.event_address }}LOCATION:{{ .Params.event_address.street_address }}, {{ .Params.event_address.city }}, {{ .Params.event_address.country_name }}{{ end }}
|
|
{{ else }}
|
|
SUMMARY:{{ index .Params.Properties.name 0 }}
|
|
{{ with .Params.Properties.url }}
|
|
DESCRIPTION: Voor meer informatie zie {{ index . 0 }}.
|
|
{{ else }}
|
|
DESCRIPTION: Voor meer informatie zie {{ .Site.Params.LiveSiteUrl }}{{ .Permalink }}
|
|
{{ end }}
|
|
DTSTART;TZID=Europe/Amsterdam:{{ dateFormat "20060102T150405" (index .Params.Properties.start 0) }}
|
|
DTEND;TZID=Europe/Amsterdam:{{ dateFormat "20060102T150405" (index .Params.Properties.end 0) }}
|
|
{{ with .Params.Properties.location }}LOCATION:{{ index . 0 }}{{ end }}
|
|
{{ end }}
|
|
END:VEVENT
|
|
END:VCALENDAR
|
|
|