mirror of
https://github.com/imfing/hextra.git
synced 2025-05-14 05:06:28 -04:00
13 lines
318 B
HTML
13 lines
318 B
HTML
![]() |
{{- $icon := index site.Data.icons (.Get 0) -}}
|
||
|
{{- $attributes := "height=1em"}}
|
||
|
|
||
|
{{- if not $icon -}}
|
||
|
{{ errorf "icon %q not found" (.Get 0) }}
|
||
|
{{- end -}}
|
||
|
|
||
|
{{- $icon = replaceRE "<svg" (printf "<svg %s" $attributes) $icon -}}
|
||
|
|
||
|
<span class="inline-block align-text-bottom icon">
|
||
|
{{- $icon | safeHTML -}}
|
||
|
</span>
|