* feat: create responsive-image helper * feat: new responsive-image helper * feat: Implement responsive image rendering in page content using a new partial and configure image processing widths. * feat: add `sizes` attribute for enhanced image responsiveness * feat: add responsive image to page header too * Check for `.Enabled` before processing image * style: remove wrong article-list--tile width and height * feat: add `helper/thumbnail-image` for responsive thumbnails * feat: enable content image processing and update responsive image `sizes` attributes for improved display. * fix: get src from the attributes so external image can work correctly * fix: add missing data-title-escaped * Update layouts/_partials/article/components/header.html Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * feat: remove default `true` for thumbnail resize parameter. * Update layouts/_markup/render-image.html Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update layouts/_partials/helper/thumbnail-image.html Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * add original width and height to thumbnail pictures, for case that resize is not enabled * Update layouts/_partials/helper/thumbnail-image.html Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
42 lines
1.5 KiB
HTML
42 lines
1.5 KiB
HTML
{{- /*
|
|
Params:
|
|
Resource: Hugo image resource object (Optional, for processing)
|
|
Width: Image width (Required)
|
|
Height: Image height (Required)
|
|
Resize: Whether to perform resize (Optional, default: false)
|
|
Attributes: Map of HTML attributes for the <img> tag
|
|
*/ -}}
|
|
|
|
{{- $resource := .Resource -}}
|
|
{{- $width := .Width -}}
|
|
{{- $height := .Height -}}
|
|
{{- $resize := .Resize -}}
|
|
{{- $attributes := .Attributes | default dict -}}
|
|
|
|
{{- if and $resize $resource (reflect.IsImageResourceProcessable $resource) $width $height -}}
|
|
{{/* Create thumbnail with 1x/2x descriptors */}}
|
|
{{- $srcset := slice -}}
|
|
{{- range (slice 1 2) -}}
|
|
{{- $w := mul $width . -}}
|
|
{{- $h := mul $height . -}}
|
|
{{- if and (le $w $resource.Width) (le $h $resource.Height) -}}
|
|
{{- $resized := $resource.Fill (printf "%dx%d" $w $h) -}}
|
|
{{- $srcset = $srcset | append (printf "%s %dx" $resized.RelPermalink .) -}}
|
|
|
|
{{- if eq . 1 -}}
|
|
{{- $attributes = merge $attributes (dict "src" $resized.RelPermalink) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{- if gt (len $srcset) 0 -}}
|
|
{{- $attributes = merge $attributes (dict "width" $width "height" $height "srcset" (delimit $srcset ", ")) -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
<img {{- range $k, $v := $attributes -}}
|
|
{{- if $v -}}
|
|
{{- printf " %s=%q" (lower $k) (printf "%v" $v) | safeHTMLAttr -}}
|
|
{{- end -}}
|
|
{{- end -}}>
|