freedom/layouts/shortcodes/image.html

15 lines
239 B
HTML
Raw Normal View History

2022-08-22 20:03:48 -04:00
{{ if .Get "href"}}
<a href='{{.Get "href"}}'>
{{end}}
2022-09-16 16:04:37 -04:00
<img loading="lazy"
2022-08-22 20:03:48 -04:00
src='{{.Get "src"}}'
{{if .Get "alt"}}
alt='{{.Get "alt"}}'
{{end}}
{{if .Get "float"}}
style='float:{{.Get "float"}}'
{{end}}>
{{ if .Get "href"}}
</a>
{{end}}