davideisinger.com

My personal website
Log | Files | Refs | README

thumbnail.html (426B)


      1 {{ $orig := .Page.Resources.GetMatch (.Get 0) }}
      2 {{ $options := .Get 1 }}
      3 
      4 {{ $img := $orig.Resize $options }}
      5 
      6 {{ if findRE `\d+x\d+` $options }}
      7   {{ $img = $orig.Fill (printf "%s center" $options) }}
      8 {{ end }}
      9 
     10 <a href="{{ $orig.RelPermalink }}">
     11   <img src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
     12   {{ with .Inner }}
     13     <figcaption>
     14       {{ . }}
     15     </figcaption>
     16   {{ end }}
     17 </a>