27 lines
1022 B
HTML
27 lines
1022 B
HTML
{{- /* Inline author byline for post single pages.
|
|
Expects the author page as context (.).
|
|
*/ -}}
|
|
<div class="flex items-center gap-4 py-6 border-t border-b border-zinc my-8">
|
|
{{- $avatarRes := .Resources.GetMatch "avatar.*" -}}
|
|
{{- $avatarSrc := "" -}}
|
|
{{- with $avatarRes }}{{ $avatarSrc = .RelPermalink }}{{ else }}{{ with $.Params.avatar }}{{ $avatarSrc = . }}{{ end }}{{ end -}}
|
|
{{- with $avatarSrc -}}
|
|
<a href="{{ $.RelPermalink }}" class="flex-shrink-0">
|
|
<img
|
|
src="{{ . }}"
|
|
alt="{{ $.Params.name | default $.Title }}"
|
|
class="w-12 h-12 object-cover border border-zinc hover:border-heat transition-colors"
|
|
loading="lazy"
|
|
>
|
|
</a>
|
|
{{- end -}}
|
|
<div class="min-w-0">
|
|
<a href="{{ .RelPermalink }}" class="label text-heat hover:text-frost transition-colors block mb-1">
|
|
{{ .Params.name | default .Title }}
|
|
</a>
|
|
{{- with .Params.bio -}}
|
|
<p class="text-fog text-sm leading-relaxed line-clamp-2 font-body">{{ . }}</p>
|
|
{{- end -}}
|
|
</div>
|
|
</div>
|