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-03-14 20:48:18 +00:00
|
|
|
<div class="box-label">{{ if $icon }}<i class="{{ $icon }}"></i>{{ end }}{{ if and $icon $title }} {{ end }}{{ $title | markdownify }}</div>
|
2022-12-01 00:37:09 +00:00
|
|
|
<div class="box-content">
|
2022-12-04 09:15:12 +00:00
|
|
|
{{ $content | safeHTML }} </div>
|
2022-06-22 18:32:18 +00:00
|
|
|
</div>
|
|
|
|
{{- end }}
|