1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
2018-08-15 13:25:28 -07:00

13 lines
524 B
HTML

{{ if .IsNamedParams }}
{{if not (hasPrefix (.Get "name") "fa-") }}
<span class="glyphicon glyphicon-{{.Get "name"}}" {{with .Get "size"}}style="font-size:{{.}}"{{end}} aria-hidden="true"></span>
{{else}}
<span class="fa {{.Get "name"}}" {{with .Get "size"}}style="font-size:{{.}}"{{end}} aria-hidden="true"></span>
{{end}}
{{else}}
{{if not (hasPrefix (.Get 0) "fa-") }}
<span class="glyphicon glyphicon-{{.Get 0}}" aria-hidden="true"></span>
{{else}}
<span class="fa {{.Get 0}}" aria-hidden="true"></span>
{{end}}
{{end}}