hugo-toha/layouts/partials/helpers/get-author-image.html
2020-06-05 22:09:43 +06:00

9 lines
274 B
HTML

{{ $authorImage:= "/assets/images/default-avatar.png"}}
{{ if eq (printf "%T" .Params.author ) "maps.Params" }}
{{ with .Params.author }}
{{ if .image }}
{{ $authorImage = .image }}
{{ end }}
{{ end }}
{{ end }}
{{ return $authorImage }}