You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openpower.foundation/themes/openpowerfoundation/layouts/shortcodes/image.html

16 lines
447 B
HTML

{{ $src := .Get "src" }}
{{ $imagesrc := (printf "images/%s" $src) }}
{{ $width := .Get "width" }}
{{ $height := .Get "height" }}
{{ $imageresource := resources.Get $imagesrc }}
{{ if eq $width "" }}
{{ $width = "500" }}
{{ end }}
{{ if eq $height "" }}
{{ $height = "500" }}
{{ end }}
{{ $imageprocessing := (printf "%sx%s %s" $width $height "webp") }}
{{ $image := $imageresource.Fit $imageprocessing }}
<img src="{{ $image.RelPermalink }}">