blob: 7cf1238e0d7916f914ffb1a4c9a88d8db58f8fbe (
plain)
1
2
3
4
5
6
|
{{- $file := .Get 0 }}
{{- $path := printf "content_images/%s" $file}}
{{- $img := resources.Get $path }}
{{- $img = $img.Resize "150x" }}
{{- $caption := .Get 1}}
<img class="float-right" alt="{{ $caption }}" src="{{ $img.Permalink }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
|