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

5 lines
133 B
HTML

{{ $authorName:= "John Doe"}}
{{ if isset .author "name" }}
{{ $authorName = .author.name }}
{{ end }}
{{ return $authorName }}