Files
Personal-Website/themes/maik-blog/layouts/shortcodes/image.html
T
2020-07-08 16:49:47 +02:00

5 lines
268 B
HTML

{{ if .Get "src" }}
<img src="{{ .Get "src" | safeURL }}" {{ with .Get "alt" }} alt="{{ . | plainify }}" {{ end }}
class="{{ with .Get "position"}}{{ . }}{{ else -}} left {{- end }}" {{ with .Get "style" }}
style="{{ . | safeCSS }}" {{ end }} />
{{ end }}