lix-website/themes/lix/layouts/partials/utilities/image-fluid.html
Kate Temkin 4e7c2d2987 theming updates, and add alt text support
(why the hell was alt text support not in the original hugo theme???)
2024-05-01 19:37:50 -06:00

6 lines
299 B
HTML

{{ $img := resources.Get .image }}
{{ if eq $img.MediaType.SubType "svg" }}
<img class="img-fluid svg" src="{{ $img.Permalink }}" alt="{{ .alt }}">
{{ else }}
<img class="img-fluid raster" src="{{ $img.Permalink }}" alt="{{ .alt }}" width="{{ $img.Width }}" height="{{ $img.Height }}">
{{ end }}