13 lines
501 B
HTML
13 lines
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>
|