15 lines
441 B
HTML
15 lines
441 B
HTML
{{ $file := printf "%s%s" .Page.File.Dir (.Get 0) }}
|
|
{{ $geo := .Get 1 }}
|
|
{{ $img := resources.GetRemote (printf "%s/%s?geo=%s" (getenv "DITHER_SERVER") $file $geo) }}
|
|
{{ $imgClass := .Get 2 }}
|
|
|
|
<a href="{{ $img.RelPermalink }}">
|
|
<img
|
|
src="{{ $img.RelPermalink }}"
|
|
width="{{ $img.Width }}"
|
|
height="{{ $img.Height }}"
|
|
{{ with $imgClass }}class="{{ $imgClass }}"{{ end }}
|
|
{{ with .Inner }}alt="{{ . }}"{{ end }}
|
|
>
|
|
</a>
|