Files
toha/layouts/partials/helpers/get-author-image.html
T
2020-04-20 01:59:01 +06:00

6 lines
162 B
HTML

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