hugo-goa/layouts/partials/avatar.html
2025-01-05 23:20:45 +01:00

13 lines
No EOL
501 B
HTML

<header class="text-center header">
{{ with .Site.Params.authorimage }}
{{ with resources.Get (printf "images/%s" .)}}
<img src="{{ .Permalink }}" alt="Author Image" class="img-fluid rounded-circle mx-auto d-block headshot">
{{ else }}
{{ with resources.Get (printf "img/%s" .)}}
<img src="{{ .Permalink }}" alt="Author Image" class="img-fluid rounded-circle mx-auto d-block headshot">
{{ end }}
{{ end }}
{{ end }}
<h1 class="author mt-3">{{ .Site.Params.author }}</h1>
</header>