12 lines
429 B
HTML
12 lines
429 B
HTML
{{- $name := .name | default . -}}
|
|
{{- $class := .class -}}
|
|
{{- $label := .label -}}
|
|
{{- $path := printf "icons/%s.svg" $name -}}
|
|
{{- with resources.Get $path -}}
|
|
<span class="icon icon-{{ $name }}{{ with $class }} {{ . }}{{ end }}"{{ if $label }} role="img" aria-label="{{ $label }}"{{ else }} aria-hidden="true"{{ end }}>
|
|
{{ .Content | safeHTML }}
|
|
</span>
|
|
{{- else -}}
|
|
{{- errorf "Icon not found: %s" $path -}}
|
|
{{- end -}}
|