kobel/layouts/partials/components/image.html

51 lines
1.2 KiB
HTML
Raw Normal View History

2023-12-23 23:01:53 +00:00
<!--
type: string - default
url: string
alt: string
2024-01-13 16:35:12 +00:00
width: int
height: int
2023-12-23 23:01:53 +00:00
-->
{{ $avatar := "avatar"}}
{{ $sizes := slice "320" "640" "960" "1280" }}
{{ $ext := path.Ext .url }}
{{ $name := path.Base (replace .url $ext "") }}
{{ $dir := path.Dir .url }}
<picture>
<source
type="image/avif"
srcset="
{{ range $i, $size := $sizes }}
{{ $dir }}/{{ $name }}-{{ $size }}{{ $ext }}.avif {{ $size }}w,
{{ end }}
2024-01-13 16:35:12 +00:00
{{ .url }}.avif {{ .width }}w
"
/>
<source
type="image/webp"
srcset="
{{ range $i, $size := $sizes }}
{{ $dir }}/{{ $name }}-{{ $size }}{{ $ext }}.webp {{ $size }}w,
{{ end }}
2024-01-13 16:35:12 +00:00
{{ .url }}.webp {{ .width }}w
"
/>
<img
class="{{if eq .type $avatar}}avatar{{end}}"
2024-01-13 16:35:12 +00:00
width="{{ .width }}"
height="{{ .height }}"
srcset="
{{ range $i, $size := $sizes }}
{{ $dir }}/{{ $name }}-{{ $size }}{{ $ext }} {{ $size }}w,
{{ end }}
{{ .url }} {{ .width }}w
"
src="{{ .url }}"
2024-01-13 16:35:12 +00:00
alt="{{ .alt }}"
loading="lazy"
decoding="async"
>
</picture>
2024-01-06 19:44:35 +00:00
{{/* https://www.brycewray.com/posts/2023/05/better-code-image-processing-hugo-render-hook-edition/ */}}