kobel/layouts/partials/components/image.html

10 lines
276 B
HTML
Raw Normal View History

2023-12-23 23:01:53 +00:00
<!--
type: string - default
url: string
alt: string
-->
2024-01-06 19:44:35 +00:00
2023-12-23 23:01:53 +00:00
{{ $avatar := "avatar"}}
2024-01-06 19:44:35 +00:00
<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/ */}}