hugo-theme-relearn/layouts/partials/shortcodes/icon.html

11 lines
302 B
HTML
Raw Normal View History

2022-12-02 17:31:54 +00:00
{{- $context := .context }}
{{- $icon := .icon | default "" }}
{{- $icon = trim $icon " " }}
{{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }}
{{- $icon = printf "fa-fw fas fa-%s" $icon }}
{{- end }}
{{- with $context }}
2023-06-08 11:36:12 +00:00
{{- if $icon -}}
2022-12-02 17:31:54 +00:00
<i class="{{ $icon }}"></i>
{{- end }}
{{- end }}