2019-01-03 18:23:17 +00:00
|
|
|
{{ .Inner }}
|
|
|
|
{{ $src := .Get "src" }}
|
|
|
|
{{ $alt := .Get "alt" }}
|
2019-01-18 19:12:28 +00:00
|
|
|
|
|
|
|
{{ if (fileExists ( print "/static" $src )) }}
|
|
|
|
{{ with (imageConfig ( print "/static" $src )) }}
|
|
|
|
{{ $imageWidth := div .Width 2 }}
|
|
|
|
<img src='{{ $src }}' alt='{{ $alt }}' width='{{ $imageWidth }}' />
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
|
|
|
<img src='{{ $src }}' alt='{{ $alt }}'/>
|
2019-01-03 18:23:17 +00:00
|
|
|
{{ end }}
|