2021-05-17 20:04:42 +02:00
|
|
|
<span class="inline-svg" >
|
2021-09-30 17:35:35 +02:00
|
|
|
|
2021-05-17 20:04:42 +02:00
|
|
|
{{ $dict := newScratch }}
|
|
|
|
|
2021-09-30 17:35:35 +02:00
|
|
|
{{ if (eq .custom true) }}
|
|
|
|
{{ $dict.Set "svg" (readFile (print "static/fa-icons/" .iconName ".svg")) }}
|
2021-05-17 20:04:42 +02:00
|
|
|
{{ else }}
|
2021-09-30 17:35:35 +02:00
|
|
|
{{ $dict.Set "svg" (partial (print "fa-icons/" .iconName ".svg")) }}
|
2021-05-17 20:04:42 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{- $path:="<path" -}}
|
|
|
|
{{- $fill:="<path fill=\"currentColor\"" -}}
|
2021-09-30 17:35:35 +02:00
|
|
|
{{ replace ($dict.Get "svg") $path $fill | safeHTML }}
|
2021-05-17 20:04:42 +02:00
|
|
|
|
|
|
|
</span>
|