mirror of
https://gitlab.com/ansol/web-ansol.org.git
synced 2024-11-21 22:01:31 +00:00
23 lines
578 B
Plaintext
23 lines
578 B
Plaintext
BEGIN:VCALENDAR
|
|
VERSION:2.0
|
|
PRODID:-//ansol-org//eventos//PT
|
|
URL:https://ansol.org/eventos/
|
|
NAME:ANSOL - Eventos
|
|
X-WR-CALNAME:ANSOL - Eventos
|
|
CALSCALE:GREGORIAN
|
|
METHOD:PUBLISH
|
|
{{range .Pages -}}
|
|
BEGIN:VEVENT
|
|
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
|