2022-07-11 20:46:07 +02:00
|
|
|
{{- $source := ($.Page.Resources.ByType "image").GetMatch (printf "%s" (.Get "name")) }}
|
|
|
|
{{- $customAlt := .Get "alt" }}
|
|
|
|
{{- $customSize := .Get "size" | lower }}
|
|
|
|
{{- $lazyLoad := default (default true $.Site.Params.GeekblogImageLazyLoading) (.Get "lazy") }}
|
2021-02-20 21:39:31 +01:00
|
|
|
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- with $source }}
|
|
|
|
{{- $caption := default .Title $customAlt }}
|
2021-02-20 21:39:31 +01:00
|
|
|
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- $profile := (.Fill "180x180 Center").Permalink }}
|
|
|
|
{{- $tiny := (.Resize "320x").Permalink }}
|
|
|
|
{{- $small := (.Resize "600x").Permalink }}
|
|
|
|
{{- $medium := (.Resize "1200x").Permalink }}
|
|
|
|
{{- $large := (.Resize "1800x").Permalink }}
|
2021-02-20 21:39:31 +01:00
|
|
|
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- $size := dict "profile" $profile "tiny" $tiny "small" $small "medium" $medium "large" $large }}
|
2021-02-20 21:39:31 +01:00
|
|
|
|
2022-01-06 13:58:10 +01:00
|
|
|
|
|
|
|
<div class="flex justify-center">
|
2022-07-11 20:46:07 +02:00
|
|
|
<figure
|
|
|
|
class="gdoc-post__figure
|
|
|
|
{{- if eq $customSize "profile" }}{{ print " gdoc-post__figure--round" }}{{ end }}"
|
|
|
|
>
|
2022-02-07 13:24:00 +01:00
|
|
|
<a class="gdoc-markdown__link--raw" href="{{ .Permalink }}">
|
2021-04-27 23:44:35 +02:00
|
|
|
<picture>
|
2022-01-06 13:58:10 +01:00
|
|
|
<source
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- with $customSize }}
|
2022-01-06 13:58:10 +01:00
|
|
|
srcset="{{ index $size $customSize }}"
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- else }}
|
2022-01-06 13:58:10 +01:00
|
|
|
srcset="{{ $size.small }} 600w, {{ $size.medium }} 1200w" sizes="100vw"
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- end }}
|
2022-01-06 13:58:10 +01:00
|
|
|
/>
|
|
|
|
<img
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- if $lazyLoad }}{{ print " loading=\"lazy\"" | safeHTMLAttr }}{{- end }}
|
2022-01-06 13:58:10 +01:00
|
|
|
src="{{ $size.large }}"
|
|
|
|
alt="{{ $caption }}"
|
|
|
|
/>
|
2021-04-27 23:44:35 +02:00
|
|
|
</picture>
|
2022-01-06 13:58:10 +01:00
|
|
|
</a>
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- if not (eq $customSize "profile") }}
|
|
|
|
{{- with $caption }}
|
|
|
|
<figcaption>
|
|
|
|
{{ . }}
|
|
|
|
{{- with $source.Params.credits }}
|
|
|
|
{{ printf " (%s)" . | $.Page.RenderString }}
|
|
|
|
{{- end }}
|
|
|
|
</figcaption>
|
|
|
|
{{- end }}
|
2022-01-06 13:58:10 +01:00
|
|
|
{{- end }}
|
|
|
|
</figure>
|
|
|
|
</div>
|
2022-07-11 20:46:07 +02:00
|
|
|
{{- end }}
|