13 lines
335 B
HTML
13 lines
335 B
HTML
{{ .Inner }}
|
|
{{ $src := .Get "src" }}
|
|
{{ $alt := .Get "alt" }}
|
|
|
|
{{ 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 }}'/>
|
|
{{ end }}
|