Files
fission-src/Documentation/docs-site/themes/docdock/layouts/shortcodes/icon.html
T
2017-09-08 19:13:41 -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}}