pages/layouts/shortcodes/fa.html

13 lines
271 B
HTML

{{- $faName := .Get 0 -}}
{{- $isFullWidth := .Get 1 -}}
{{- $fontAwesomePath := print "assets/graphics/fa/" $faName ".svg" -}}
<span
class="fa-container{{- if eq $isFullWidth "yes" }}
fa-fw
{{ end -}}"
>
{{- readFile $fontAwesomePath | safeHTML -}}
</span>