mainpage_v2_theme/layouts/partials/utilities/card-img-top.html
2024-04-03 22:13:59 +02:00

8 lines
266 B
HTML

{{ with resources.Get . }}
{{ if eq .MediaType.SubType "svg" }}
<img class="" src="{{ .Permalink }}" alt="{{ .Title }}">
{{ else }}
<img class="" src="{{ .Permalink }}" alt="{{ .Title }}" width="{{ .Width }}" height="{{ .Height }}">
{{ end }}
{{ end }}