{{ if and (ne .Params.when "") (ne .Params.when nil) }}
{{ .Params.when }}
{{ end }}
{{ if and (ne .Params.price "") (ne .Params.price nil) }}
{{ if eq .Params.price "free" }}
Der Eintritt ist frei.
{{ else }}
Eintritt: {{ .Params.price }}
{{ end }}
{{ end }}
{{- if .Resources.ByType "image" -}}
{{- $pic := index (.Resources.ByType "image") 0 -}}
{{ $thumb := "" }}
{{ if eq .Content "" }}
{{- $thumb = $pic.Resize "1024x" }}
{{ else }}
{{- $thumb = $pic.Resize "2048x" }}
{{ end }}
{{- end }}
{{- if .Params.description -}}
{{- .Params.description -}}
{{- else -}}
{{- .Summary -}}
{{- end }}
{{ if .Truncated }}
{{- i18n "readmore" -}}..
{{ end }}
{{- end }}
{{ end }}
{{ define "sidebar" }}
{{- partial "sidebar" . }}
{{ end }}