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

8 lines
229 B
HTML

{{ .Inner }}
{{ $src := .Get "src" }}
{{ $alt := .Get "alt" }}
{{ with (imageConfig ( print "/static" $src )) }}
{{ $imageWidth := div .Width 2 }}
<img src='{{ $src }}' alt='{{ $alt }}' width='{{ $imageWidth }}' />
{{ end }}