summaryrefslogtreecommitdiffstats
path: root/layouts/shortcodes/img.html
blob: c58d63aa438383f1e4ed2ad229af10b476938560 (plain)
1
2
3
4
5
6
7
<!-- editorconfig-checker-disable -->
<img src="{{ .Get "src" }}"
     {{- with .Get "alt" }} alt="{{ . }}"{{ end }}
     {{- with .Get "width" }} width="{{ . }}"{{ end }}
     {{- with .Get "height" }} height="{{ . }}"{{ end }}
     {{- with .Get "class" }} class="{{ . }}"{{ end }}>
<!-- editorconfig-checker-enable -->