{{ with .Get "what" }}

{{ . }}

{{ end }} {{ $where := false }} {{ $when := false }} {{/* Where was the thing you did? (e.g. Mozilla) */}} {{ with .Get "where" }}{{ $where = . }}{{ end }} {{/* When did you do it? (e.g. 2020) */}} {{- with .Get "when" }}{{ $when = . }}{{ end }} {{ if and $where $when }}

{{ $where }} | {{ $when }}

{{ else if $where }}

{{ $where }}

{{ else if $when }}

{{ $when }}

{{ end }} {{/* additional HTML under or as the entry */}} {{ if gt (len .Inner) 0 }}
{{ .Inner }}
{{ end }}