aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/partials/author-picture.html
blob: b8e5489e39407c03aa830f944e2fe4cee5115c0c (plain)
1
2
3
4
5
6
7
8
9
10
{{- $file  := "/profile/picture.png" -}}
{{- $image := imageConfig (print "content/" (partial "author-media-path.html" .) $file) -}}

<img
  loading="lazy"
  width="{{ $image.Width }}"
  height="{{ $image.Height }}"
  alt="{{ partial "author-name.html" . }}"
  src="{{ .Site.BaseURL }}/{{ partial "author-media-path.html" . }}{{ $file }}"
/>