summaryrefslogtreecommitdiff
path: root/layouts/partials/button-15.html
blob: b715d2a6243a3d8de99524b1798127afbf29e472 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{- $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 
      class="webbutton"
      alt="{{ $.alt }}"
      src="{{ $img1x.Permalink }}" 
      srcset="
              {{ $img1x.Permalink }} 1x,
              {{ $img2x.Permalink }} 2x
              "
      width="{{ $img1x.Width }}" 
      height="{{ $img1x.Height }}">
{{- if $.href }}</a> {{ end }}