2022-07-11 18:46:07 +00:00
|
|
|
{{- $source := ($.Page.Resources.ByType "image").GetMatch (printf "%s" (.Get "name")) }}
|
|
|
|
{{- $customAlt := .Get "alt" }}
|
|
|
|
{{- $customSize := .Get "size" | lower }}
|
2023-06-22 07:45:54 +00:00
|
|
|
{{- $lazyLoad := default (default true $.Site.Params.geekdocImageLazyLoading) (.Get "lazy") }}
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- $data := newScratch }}
|
2021-02-20 20:39:31 +00:00
|
|
|
|
2022-07-11 18:46:07 +00:00
|
|
|
{{- with $source }}
|
|
|
|
{{- $caption := default .Title $customAlt }}
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- $isSVG := (eq .MediaType.SubType "svg") }}
|
2024-04-07 18:15:01 +00:00
|
|
|
{{- $origin := . }}
|
2024-04-07 19:54:12 +00:00
|
|
|
|
2022-12-21 14:53:02 +00:00
|
|
|
{{- if $isSVG }}
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- $data.SetInMap "size" "tiny" "320" }}
|
|
|
|
{{- $data.SetInMap "size" "small" "600" }}
|
|
|
|
{{- $data.SetInMap "size" "medium" "1200" }}
|
|
|
|
{{- $data.SetInMap "size" "large" "1800" }}
|
2022-12-21 14:53:02 +00:00
|
|
|
{{- else }}
|
2024-04-07 18:15:01 +00:00
|
|
|
{{- $data.SetInMap "size" "tiny" "320x"}}
|
|
|
|
{{- $data.SetInMap "size" "small" "600x" }}
|
|
|
|
{{- $data.SetInMap "size" "medium" "1200x" }}
|
|
|
|
{{- $data.SetInMap "size" "large" "1800x" }}
|
2024-04-07 19:54:12 +00:00
|
|
|
{{- end -}}
|
2022-01-06 12:58:10 +00:00
|
|
|
|
|
|
|
<div class="flex justify-center">
|
2024-04-07 19:54:12 +00:00
|
|
|
<figure class="gdoc-markdown__figure">
|
2022-02-07 12:24:00 +00:00
|
|
|
<a class="gdoc-markdown__link--raw" href="{{ .Permalink }}">
|
2021-04-27 21:44:35 +00:00
|
|
|
<picture>
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- $size := $data.Get "size" }}
|
|
|
|
{{- if not $isSVG }}
|
2024-04-07 18:15:01 +00:00
|
|
|
{{- if ne $customSize "origin" }}
|
2022-12-11 14:05:30 +00:00
|
|
|
<source
|
2024-04-07 19:54:12 +00:00
|
|
|
{{- if $customSize }}
|
2024-04-07 18:15:01 +00:00
|
|
|
srcset="{{ ($origin.Resize (index $size $customSize)).Permalink }}"
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- else }}
|
2024-04-07 18:15:01 +00:00
|
|
|
srcset="{{ ($origin.Resize (index $size "small")).Permalink }} 600w, {{ ($origin.Resize (index $size "medium")).Permalink }} 1200w" sizes="100vw"
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- end }}
|
|
|
|
/>
|
2024-04-07 18:15:01 +00:00
|
|
|
{{- end }}
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- end }}
|
2022-01-06 12:58:10 +00:00
|
|
|
<img
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- if $isSVG }}
|
2024-04-07 18:15:01 +00:00
|
|
|
src="{{ $origin.Permalink }}" width="{{ index $size (default "medium" $customSize) }}"
|
2022-09-02 08:58:44 +00:00
|
|
|
{{- else }}
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- if $lazyLoad }}{{ print " loading=\"lazy\"" | safeHTMLAttr }}{{- end }}
|
|
|
|
{{- if eq $customSize "origin" }}
|
2024-04-07 18:15:01 +00:00
|
|
|
src="{{ $origin.Permalink }}"
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- else }}
|
2024-04-07 18:15:01 +00:00
|
|
|
src="{{ ($origin.Resize (index $size "large")).Permalink }}"
|
2022-12-11 14:05:30 +00:00
|
|
|
{{- end }}
|
|
|
|
alt="{{ $caption }}"
|
2022-09-02 08:58:44 +00:00
|
|
|
{{- end }}
|
2022-01-06 12:58:10 +00:00
|
|
|
/>
|
2021-04-27 21:44:35 +00:00
|
|
|
</picture>
|
2022-01-06 12:58:10 +00:00
|
|
|
</a>
|
2024-04-07 19:54:12 +00:00
|
|
|
{{- with $caption }}
|
|
|
|
<figcaption>
|
|
|
|
{{ . }}
|
|
|
|
{{- with $source.Params.credits }}
|
|
|
|
{{ printf " (%s)" . | $.Page.RenderString }}
|
|
|
|
{{- end }}
|
|
|
|
</figcaption>
|
2022-01-06 12:58:10 +00:00
|
|
|
{{- end }}
|
|
|
|
</figure>
|
|
|
|
</div>
|
2022-07-11 18:46:07 +00:00
|
|
|
{{- end }}
|