hugo-toha/layouts/partials/helpers/get-author-image.html

5 lines
162 B
HTML

{{ $authorImage:= "/assets/images/default-avatar.svg"}}
{{ if isset .author "image" }}
{{ $authorImage = .author.image }}
{{ end }}
{{ return $authorImage }}