yrzam-hugo-theme/layouts/shortcodes/icon.html
2024-06-08 22:47:06 +04: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>
{{- /**/ -}}