www-jmbit-de/themes/terminal/layouts/shortcodes/image.html
Johannes Bülow b20ad0960c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
moved to newer version of theme, refractored go code
2024-11-26 09:09:05 +01:00

3 lines
380 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 }} {{ with .Get "width" }} width="{{ . | plainify }}" {{ end }} {{ with .Get "height" }} height="{{ . | plainify }}" {{ end }} />
{{ end }}