kobel/layouts/partials/components/image.html
2024-01-06 20:44:35 +01:00

10 lines
No EOL
276 B
HTML

<!--
type: string - default
url: string
alt: string
-->
{{ $avatar := "avatar"}}
<img class="{{if eq .type $avatar}} avatar {{end}}" alt="{{ .alt }}" src="{{ .url }}">
{{/* https://www.brycewray.com/posts/2023/05/better-code-image-processing-hugo-render-hook-edition/ */}}