9 lines
274 B
HTML
9 lines
274 B
HTML
{{ $authorImage:= "/assets/images/default-avatar.svg"}}
|
|
{{ if eq (printf "%T" .Params.author ) "maps.Params" }}
|
|
{{ with .Params.author }}
|
|
{{ if .image }}
|
|
{{ $authorImage = .image }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ return $authorImage }}
|