13 lines
530 B
HTML
13 lines
530 B
HTML
{{ $avatar_img := .Site.Params.author.avatar }}
|
|
{{ $avatar_img_alt := .Site.Params.author.name }}
|
|
{{ $image := resources.Get $avatar_img }}
|
|
<div class="author">
|
|
{{ with $image }}
|
|
{{ $image := $image.Fill "100x100 webp" }}
|
|
<img class="author-avatar" src="{{ $image.RelPermalink }}" alt="{{ $avatar_img_alt }}" width="{{ .Width }}"
|
|
height="{{ .Height }}" />
|
|
{{ end }}
|
|
<h2 class="author-name">{{ .Site.Params.author.intro }}</h2>
|
|
<p class="author-bio">{{ .Site.Params.author.description }}</p>
|
|
</div>
|