mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-10 14:55:41 +01:00
13 lines
694 B
Text
13 lines
694 B
Text
{{- define "main" -}}
|
|
# {{ with .Params.emoji }}{{.}} {{end}}{{ .Title | default (partial "page-title.txt" .) }}
|
|
|
|
{{ $event := partial "event.obj" .Params.timings -}}
|
|
{{ .Summary | htmlUnescape }}
|
|
{{- $starts := time.AsTime $event.timing.starts }}
|
|
I{{ if $event.isPast }} was{{ else }}'m{{ end }} planning on going to this event on {{ partial "year-relative-date.txt" $starts }}, from {{ $starts.Format "15:04 (MST)" }}.
|
|
{{ with .Params.location }}
|
|
=> {{ partial "geolink.url" . }} Location: {{ .name }}{{ end -}}
|
|
{{- with .Params.link }}
|
|
=> {{ . }} More info on: {{ strings.TrimPrefix "www." (urls.Parse .).Hostname }}{{ end }}
|
|
{{ partial "markdown.gmi" .Page.RenderShortcodes -}}
|
|
{{- end -}}
|