2023-07-27 14:14:55 +00:00
{{- $page := .page }}
{{- if and (not $page) .context }}
{{- $page = .context }}
2023-07-27 15:47:36 +00:00
{{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'badge' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#5180" $page.File.Path }}
2023-07-27 14:14:55 +00:00
{{- end }}
2023-01-23 21:35:43 +00:00
{{- $color := .color | default "" }}
2022-12-01 00:37:09 +00:00
{{- $content := .content }}
{{- $style := .style | default "default" }}
2023-10-02 23:28:24 +00:00
{{- $title := .title }}
{{- if not $title }}
{{- if eq $style "info" }}{{ $title = $style | T }}{{ end }}
{{- if eq $style "warning" }}{{ $title = $style | T }}{{ end }}
{{- if eq $style "note" }}{{ $title = $style | T }}{{ end }}
{{- if eq $style "tip" }}{{ $title = $style | T }}{{ end }}
{{- end }}
2022-12-01 00:37:09 +00:00
{{- $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 }}
2023-07-27 14:14:55 +00:00
{{- with $page -}}
2023-06-03 21:10:32 +00:00
< span class = "badge cstyle {{ $style }}{{ if or $icon $title }} badge-with-title{{ end }}" > {{ if or $icon $title }}< span class = "badge-title" > {{ if $icon }}< i class = "{{ $icon }}" > < / i > {{ end }}{{ if and $icon $title }} {{ end }}{{ if $title }}{{ $title | .RenderString }}{{ end }}< / span > {{ end }}< span class = "badge-content" { { if $ color } } style = "background-color: {{ $color }};" { { end } } > {{ $content }}< / span > < / span >
2022-12-01 00:37:09 +00:00
{{- end }}