summaryrefslogtreecommitdiff
path: root/layouts/partials/button-15.html
blob: a155f056e6f0932ba9bbd747daba5dd8c97db0f2 (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/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "80x15 webp q90"}}
{{- $img2x := $img.Resize "160x30 webp 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 }}