mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-05 04:40:43 +00:00
72 lines
2.5 KiB
HTML
72 lines
2.5 KiB
HTML
{{- $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") }}
|
|
{{- $data := newScratch }}
|
|
|
|
{{- with $source }}
|
|
{{- $caption := default .Title $customAlt }}
|
|
{{- $isSVG := (eq .MediaType.SubType "svg") }}
|
|
|
|
{{- $origin := .Permalink }}
|
|
{{- if $isSVG }}
|
|
{{- $data.SetInMap "size" "profile" "180" }}
|
|
{{- $data.SetInMap "size" "tiny" "320" }}
|
|
{{- $data.SetInMap "size" "small" "600" }}
|
|
{{- $data.SetInMap "size" "medium" "1200" }}
|
|
{{- $data.SetInMap "size" "large" "1800" }}
|
|
{{- else }}
|
|
{{- $data.SetInMap "size" "profile" (.Fill "180x180 Center").Permalink }}
|
|
{{- $data.SetInMap "size" "tiny" (.Resize "320x").Permalink }}
|
|
{{- $data.SetInMap "size" "small" (.Resize "600x").Permalink }}
|
|
{{- $data.SetInMap "size" "medium" (.Resize "1200x").Permalink }}
|
|
{{- $data.SetInMap "size" "large" (.Resize "1800x").Permalink }}
|
|
{{- end }}
|
|
|
|
|
|
<div class="flex justify-center">
|
|
<figure
|
|
class="gblog-post__figure
|
|
{{- if eq $customSize "profile" }}{{ print " gblog-post__figure--round" }}{{ end }}"
|
|
>
|
|
<a class="gblog-markdown__link--raw" href="{{ .Permalink }}">
|
|
<picture>
|
|
{{- $size := $data.Get "size" }}
|
|
{{- if not $isSVG }}
|
|
<source
|
|
{{- with $customSize }}
|
|
srcset="{{ index $size $customSize }}"
|
|
{{- else }}
|
|
srcset="{{ $size.small }} 600w, {{ $size.medium }} 1200w" sizes="100vw"
|
|
{{- end }}
|
|
/>
|
|
{{- end }}
|
|
<img
|
|
{{- if $isSVG }}
|
|
src="{{ $origin }}" width="{{ index $size (default "medium" $customSize) }}"
|
|
{{- else }}
|
|
{{- if $lazyLoad }}{{ print " loading=\"lazy\"" | safeHTMLAttr }}{{- end }}
|
|
{{- if eq $customSize "origin" }}
|
|
src="{{ $origin }}"
|
|
{{- else }}
|
|
src="{{ $size.large }}"
|
|
{{- end }}
|
|
alt="{{ $caption }}"
|
|
{{- end }}
|
|
/>
|
|
</picture>
|
|
</a>
|
|
{{- if not (eq $customSize "profile") }}
|
|
{{- with $caption }}
|
|
<figcaption>
|
|
{{ . }}
|
|
{{- with $source.Params.credits }}
|
|
{{ printf " (%s)" . | $.Page.RenderString }}
|
|
{{- end }}
|
|
</figcaption>
|
|
{{- end }}
|
|
{{- end }}
|
|
</figure>
|
|
</div>
|
|
{{- end }}
|