davideisinger.com

My personal website
Log | Files | Refs | README

dither.html (441B)


      1 {{ $file := printf "%s%s" .Page.File.Dir (.Get 0) }}
      2 {{ $geo := .Get 1 }}
      3 {{ $img := resources.GetRemote (printf "%s/%s?geo=%s" (getenv "DITHER_SERVER") $file $geo) }}
      4 {{ $imgClass := .Get 2 }}
      5 
      6 <a href="{{ $img.RelPermalink }}">
      7   <img
      8     src="{{ $img.RelPermalink }}"
      9     width="{{ $img.Width }}"
     10     height="{{ $img.Height }}"
     11     {{ with $imgClass }}class="{{ $imgClass }}"{{ end }}
     12     {{ with .Inner }}alt="{{ . }}"{{ end }}
     13   >
     14 </a>