Files
hugo-theme/layouts/_shortcodes/icon.html
2026-02-28 16:59:39 +00:00

8 lines
230 B
HTML

<span class="icon">
{{- $fname:=print "assets/icons/" ( .Get 0 ) ".svg" -}}
{{- $path:="<path" -}}
{{- $fill:="<path fill=\"currentColor\"" -}}
{{- replace (readFile $fname) $path $fill | safeHTML -}}
</span>
{{- /**/ -}}