mirror of
https://gitlab.com/ansol/web-ansol.org.git
synced 2025-02-19 06:45:42 +00:00
21 lines
547 B
Plaintext
21 lines
547 B
Plaintext
|
BEGIN:VCALENDAR
|
||
|
VERSION:2.0
|
||
|
PRODID:-//ansol-org//eventos//PT
|
||
|
CALSCALE:GREGORIAN
|
||
|
METHOD:PUBLISH
|
||
|
{{range .Pages -}}
|
||
|
BEGIN:VEVENT
|
||
|
ORGANIZER;CN="Brian Hicks":mailto:brian@brianthicks.com
|
||
|
SUMMARY:{{.Title}}
|
||
|
UID:{{.Permalink}}
|
||
|
SEQUENCE:0
|
||
|
STATUS:CONFIRMED
|
||
|
DTSTAMP:{{dateFormat "20060102T150405Z" .Date}}
|
||
|
DTSTART:{{dateFormat "20060102T150405" .Params.metadata.event.date.start}}
|
||
|
DTEND:{{dateFormat "20060102T150405" .Params.metadata.event.date.finish}}
|
||
|
LOCATION:{{ .Params.metadata.event.location }}
|
||
|
URL:{{.Permalink}}
|
||
|
END:VEVENT
|
||
|
{{end -}}
|
||
|
END:VCALENDAR
|