Files
hugo-profile/layouts/partials/icon.html
T
2025-08-23 23:04:17 -02:30

7 lines
210 B
HTML

{{ $icon := .icon }}
{{ $class := .class | default "" }}
{{ $svg := printf "icons/%s.svg" $icon | resources.Get }}
{{ if $svg }}
<span class="icon {{ $class }}">{{ $svg.Content | safeHTML }}</span>
{{ end }}