2022-06-22 18:32:18 +00:00
{{- $context := .context }}
2023-01-23 21:35:43 +00:00
{{- $color := .color | default "" }}
2022-06-22 18:32:18 +00:00
{{- $content := .content }}
{{- $style := .style | default "default" }}
{{- $title := .title | default ($style | T) }}
2022-12-01 00:37:09 +00:00
{{- $title = trim $title " " }}
2022-06-22 18:32:18 +00:00
{{- $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 }}
{{- with $context }}
2023-01-23 21:35:43 +00:00
< div class = "box notices cstyle {{ $style }}" { { if $ color } } style = "--VARIABLE-BOX-color: {{ $color }};" { { end } } >
2023-06-03 11:14:15 +00:00
< div class = "box-label" > {{ if $icon }}< i class = "{{ $icon }}" > < / i > {{ end }}{{ if and $icon $title }} {{ end }}{{ $title | .RenderString }}< / div >
2022-12-01 00:37:09 +00:00
< div class = "box-content" >
2023-06-15 17:35:35 +00:00
{{ if ne "< " (substr (strings.TrimLeft " \n\r\t" $content) 0 1) }}< p > {{ end }}<!-- we add a DOM element here if there is none to make collapsing marings work -->
2023-06-03 09:11:41 +00:00
{{ $content | safeHTML }}< / div > <!-- no line break allowed here because of awkward behavior of Hugo 110 or this theme when tag shortcode is called standalone outside of tags shortcode ? -->
2022-06-22 18:32:18 +00:00
< / div >
{{- end }}