Files
davideisinger.com/themes/v2/layouts/shortcodes/dither.html
2025-11-19 10:57:10 -05:00

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>