hugo-toha/layouts/shortcodes/img.html
2020-06-14 02:46:22 +06:00

17 lines
388 B
HTML

<img src="{{ .Get "src"}}"
{{ if .Get "title"}}
alt="{{.Get "title"}}"
{{end}}
{{ if .Get "width"}}
width="{{.Get "width"}}"
{{end}}
{{ if .Get "height"}}
height="{{.Get "height"}}"
{{end}}
{{ if .Get "float"}}
style="float: {{.Get "float"}};"
{{end}}
{{ if .Get "align"}}
class="{{.Get "align"}}"
{{end}}
>