hugo-toha/layouts/partials/helpers/get-author-image.html
hossainemruz dbd270eaee Make theme compatible with hugoBasicExamples
Signed-off-by: hossainemruz <emruz@appscode.com>
2020-06-02 03:59:39 +06:00

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 }}