{{- $context := .context }} {{- $content := .content }} {{- $href := (trim .href " ") | default "" }} {{- $style := .style | default "transparent" }} {{- $target := .target | default "" }} {{- $type := .type | default "" }} {{- $isButton := false }} {{- if or (not $href) (strings.HasPrefix $href "javascript:") }} {{- $isButton = true }} {{- $href = substr $href (len "javascript:") }} {{- if not $type }} {{- $type = "button" }} {{- end }} {{- else if and (eq (len $target) 0) (or (strings.HasPrefix $href "http://") (strings.HasPrefix $href "https://") ) }} {{- $target = "_blank" }} {{- end }} {{- $title := .title | default ($content) | default ($style | T) }} {{- $title = trim $title " " }} {{- $icon := .icon | default "" }} {{- if and (not $icon) (eq (len $icon) 0) }} {{- if eq $style "info" }}{{ $icon = default "info-circle" }}{{ end }} {{- if eq $style "warning" }}{{ $icon = default "exclamation-triangle" }}{{ end }} {{- if eq $style "note" }}{{ $icon = default "exclamation-circle" }}{{ end }} {{- if eq $style "tip" }}{{ $icon = default "lightbulb" }}{{ end }} {{- end }} {{- $icon = trim $icon " " }} {{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }} {{- $icon = printf "fa-fw fas fa-%s" $icon }} {{- end }} {{- $iconposition := .iconposition | default "left" }} {{- with $context }} {{- if $isButton }} {{- else }} {{- end }} {{- if and $icon (eq $iconposition "left") }} {{- end }} {{ $title }} {{- if and $icon (eq $iconposition "right") }} {{- end }} {{- if $isButton }} {{- else }} {{- end }} {{- end }}