docs-v2/layouts/shortcodes/img-hd.html

13 lines
349 B
HTML
Raw Normal View History

{{ .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 }}'/>
{{ end }}