15 lines
690 B
Plaintext
15 lines
690 B
Plaintext
{{- /* Note this file has CRLF line endings as required by the specs */ -}}
|
|
BEGIN:VEVENT
|
|
UID:{{ partial "icalEscape.ics" .Permalink }}
|
|
CREATED:{{ dateFormat "20060102T150405Z" .Date.UTC }}
|
|
DTSTAMP:{{ dateFormat "20060102T150405Z" (now).UTC }}
|
|
SUMMARY:{{ .Title | plainify | partial "icalEscape.ics" }}
|
|
DESCRIPTION:{{ printf "%s %s" (.Content | plainify | truncate 200) .Permalink | partial "icalEscape.ics" }}
|
|
DTSTART:{{ dateFormat "20060102T150405Z" (time .Params.When).UTC }}
|
|
DTEND:{{ $length := 30 -}}
|
|
{{- with .Params.Length -}}
|
|
{{ $length = (int .) }}
|
|
{{- end -}}
|
|
{{- dateFormat "20060102T150405Z" (time (add (time .Params.When).Unix (mul $length 60))).UTC }}
|
|
END:VEVENT
|