You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
374 B
5 lines
374 B
3 years ago
|
{{- $img := resources.Get .path }}
|
||
|
{{- $img = $img.Resize (printf "%dx%d webp" $img.Width $img.Height) }}
|
||
|
<img src="{{ $img.Permalink }}" alt="{{ .alt | default " " }}" width="{{ .width | default $img.Width }}"
|
||
|
height="{{ .height | default $img.Height }}" {{- if .class}}class="{{ .class }}" {{end}}
|
||
|
{{- if .style}}style="{{ .style | safeCSS | default " " }}" {{end}} />
|