2022-04-01 01:42:13 +00:00
|
|
|
<span {{ if (.Get "itemprop") -}}itemprop="{{- .Get "itemprop" -}}"{{- end }}
|
|
|
|
itemscope itemtype="https://schema.org/Person"
|
|
|
|
class="h-card vcard{{if eq (.Get "itemprop") "author"}} p-author{{end}}">
|
2022-02-19 20:47:07 +00:00
|
|
|
<a itemprop="url" href="{{- .Get "url" -}}" class="u-url url">
|
2022-02-23 05:48:10 +00:00
|
|
|
{{- if (.Get "avatar") -}}
|
|
|
|
{{- $avatar_img := (resources.GetRemote (.Get "avatar")).Resize "32x32" -}}
|
|
|
|
<img itemprop="image" class="u-photo photo" src="{{ $avatar_img.RelPermalink }}" alt="" width="16" height="16">
|
|
|
|
{{- end }}
|
2022-02-19 20:47:07 +00:00
|
|
|
<span itemprop="name" class="p-name fn n">
|
|
|
|
{{- if (.Get "first-name") -}}<span itemprop="givenName" class="p-given-name given-name">{{- .Get "first-name" -}}</span>{{- end }}
|
2022-02-19 23:20:16 +00:00
|
|
|
{{ if (.Get "last-name") -}}<span itemprop="familyName" class="p-family-name family-name">{{- .Get "last-name" -}}</span>{{- end -}}
|
2022-02-19 20:47:07 +00:00
|
|
|
{{- if (.Get "nickname") -}}<span itemprop="nickname" class="p-nickname nickname">{{- .Get "nickname" -}}</span>{{- end -}}
|
|
|
|
{{- if (.Get "name") -}}{{- .Get "name" -}}{{- end -}}
|
2022-04-11 00:24:59 +00:00
|
|
|
</span>{{- if (.Get "appendString") -}}{{- .Get "appendString" -}}{{- end -}}{{- /* Strip trailing newline: https://github.com/gohugoio/hugo/issues/1753 */ -}}
|
2022-02-19 20:47:07 +00:00
|
|
|
</a>{{- /* Strip trailing newline: https://github.com/gohugoio/hugo/issues/1753 */ -}}
|
|
|
|
{{- if (.Get "org") }}
|
|
|
|
from <span class="p-org org" itemprop="affiliation" itemscope itemtype="https://schema.org/Organization">
|
|
|
|
<a itemprop="url" class="organization-name" href="{{- .Get "org-url" -}}">
|
|
|
|
<span itemprop="name">{{- .Get "org" -}}</span>{{- /* Strip trailing newline: https://github.com/gohugoio/hugo/issues/1753 */ -}}
|
2022-03-18 06:32:19 +00:00
|
|
|
</a></span>
|
2022-02-19 20:47:07 +00:00
|
|
|
{{- end -}}
|
|
|
|
</span>{{- /* Strip trailing newline: https://github.com/gohugoio/hugo/issues/1753 */ -}}
|