anna-uetwiller-architecture/themes/anna/layouts/shortcodes/img.html

6 lines
187 B
HTML
Raw Normal View History

2020-08-15 19:00:29 +02:00
{{ $img := $.Page.Resources.GetMatch (.Get 0) }}
{{ $res_img := $img.Fill "600x400" }}
<a href="{{ .Get 2 | ref . }}">
<img src="{{ $res_img.RelPermalink }}" alt="{{ .Get 1 }}" />
</a>