blob: 86891e7562e84f5f0024e44791eb715e304fda08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{{ $myimg := resources.Get .Destination }}
{{ if $myimg }}
{{ $myimg := $myimg.Resize "1024x" }}
<figure class="small-figure">
<picture>
<img alt="{{ .PlainText }}" src="{{ $myimg.RelPermalink }}">
</picture>
<figcaption class="gallery-caption">{{ .Title }}</figcaption>
</figure>
{{ else }}
{{ errorf "Can not find image: %s" .Destination }}
{{ end }}
|