summaryrefslogtreecommitdiff
path: root/layouts/shortcodes/causes.html
blob: afc89327fedd116ec591d2f23a22ba9fe85ca42c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="donor">
{{- $file := "fsf-donor.png" }}
{{- $path := printf "content_images/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "180x webp q90"}}

<a href="https://freebsdfoundation.org/donate" target="_blank">

<a href="https://my.fsf.org/join?referrer=6050678" target="_blank">
  <img src="{{$img1x.Permalink}}" width="{{$img1x.Width}}" height="{{$img1x.Height}}"  alt="I am an FSF associate" width="180" height="45">
</a>

{{- $file := "freebsd-donor.gif" }}
{{- $path := printf "content_images/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img1x := $img.Resize "125x webp q90"}}

<a href="https://freebsdfoundation.org/donate" target="_blank">
  <img src="{{$img1x.Permalink}}" width="{{$img1x.Width}}" height="{{$img1x.Height}}"    alt="Proud Donor" title="FreeBSD Foundation Donor" >
</a>
</div>