blob: 6d438e455566a2fd28e2a4057ac3e0ead0a96508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{{- $file := .file }}
{{- $path := printf "webbuttons_31/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "88x gif q90"}}
{{- $img2x := $img.Resize "176x gif q90"}}
{{- if $.href }} <a href="{{ $.href }}"> {{ end }}
<img
loading="lazy"
class="webbutton"
alt="{{ $.alt }}"
src="{{ $img1x.Permalink }}"
srcset="
{{ $img1x.Permalink }} 1x,
{{ $img2x.Permalink }} 2x
"
width="{{ $img1x.Width }}"
height="{{ $img1x.Height }}">
{{- if $.href }}</a> {{ end }}
|