lix-website/themes/lix/layouts/partials/utilities/image-fluid.html

8 lines
286 B
HTML
Raw Normal View History

2024-04-27 03:39:10 +00:00
{{ with resources.Get . }}
2024-04-27 06:56:22 +00:00
{{ if eq .MediaType.SubType "svg" }}
<img class="img-fluid svg" src="{{ .Permalink }}" alt="{{ .Title }}">
{{ else }}
<img class="img-fluid raster" src="{{ .Permalink }}" alt="{{ .Title }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}
2024-04-27 03:39:10 +00:00
{{ end }}