13 lines
383 B
HTML
13 lines
383 B
HTML
{{ $file := printf "%s%s" .Page.RelPermalink (.Get 0) }}
|
|
{{ $geo := .Get 1 }}
|
|
{{ $img := resources.GetRemote (printf "%s%s?geo=%s" (getenv "DITHER_SERVER") $file $geo) }}
|
|
|
|
<a href="{{ $img.RelPermalink }}">
|
|
<img src="{{ $img.RelPermalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
|
|
{{ with .Inner }}
|
|
<figcaption>
|
|
{{ . }}
|
|
</figcaption>
|
|
{{ end }}
|
|
</a>
|