{{- $page := .page }} {{- if and (not $page) .context }} {{- $page = .context }} {{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'notice' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration#5180" $page.File.Filename }} {{- end }} {{- $class := .class | default "notices" }} {{- $containerstyle := .containerstyle | default "div" }} {{- $containerclass := .containerclass | default slice | append "box-content" }} {{- $color := .color | default "" }} {{- $content := trim .content "\n\r\t " }} {{- $hasContent := ne (strings.TrimLeft "

" $content) "" }} {{- if not (hasPrefix $content "<") }} {{- $content = printf "

\n%s" $content }} {{- end }} {{- $style := .style | default "default" }} {{- $title := .title }} {{- if not $title }} {{- if eq $style "caution" }}{{ $title = $style | T }}{{ end }} {{- if eq $style "important" }}{{ $title = $style | T }}{{ end }} {{- if eq $style "info" }}{{ $title = $style | T }}{{ end }} {{- if eq $style "note" }}{{ $title = $style | T }}{{ end }} {{- if eq $style "tip" }}{{ $title = $style | T }}{{ end }} {{- if eq $style "warning" }}{{ $title = $style | T }}{{ end }} {{- end }} {{- $title = trim $title " " }} {{- $icon := .icon | default "" }} {{- if and (not $icon) (eq (len $icon) 0) }} {{- if eq $style "caution" }}{{ $icon = default "hand" }}{{ end }} {{- if eq $style "important" }}{{ $icon = default "bolt" }}{{ end }} {{- if eq $style "info" }}{{ $icon = default "info-circle" }}{{ end }} {{- if eq $style "note" }}{{ $icon = default "exclamation-circle" }}{{ end }} {{- if eq $style "tip" }}{{ $icon = default "lightbulb" }}{{ end }} {{- if eq $style "warning" }}{{ $icon = default "exclamation-triangle" }}{{ end }} {{- end }} {{- $icon = trim $icon " " }} {{- if and $icon (not (findRE ".*?\\bfa-\\w.*?" $icon)) }} {{- $icon = printf "fa-fw fas fa-%s" $icon }} {{- end }} {{- $expander := false }} {{- $expanded := .expanded | default "" }} {{- if $hasContent }} {{- if eq (printf "%T" $expanded) "string" }} {{- if ne (trim $expanded " ") "" }} {{- $expander = true }} {{- $expanded = (eq $expanded "true") }} {{- end }} {{- else }} {{- $expander = true }} {{- end }} {{- end }} {{- $id := cond (or (eq .id nil) (eq .id "")) (partial "make-random-md5.hugo" $page) .id }} {{- $idattribute := "" }} {{- if $expander }} {{- $containerclass = $containerclass | append "expand-content" }} {{- $idattribute = printf ` id="R-expandcontent-%s"` $id }} {{- end }} {{- with $page }} {{- if or $icon $title $hasContent -}}

{{- if $expander }}
{{- else if or $icon $title }}
{{ if $icon }}{{ end }}{{ if and $icon $title }} {{ end }}{{ $title | .RenderString }}
{{- end }} {{- if $hasContent }} {{ printf " <%s%s class=\"%s\">" $containerstyle $idattribute (delimit $containerclass " ") | safeHTML }} {{ $content | safeHTML }} {{ printf " " $containerstyle | safeHTML }} {{- end }}
{{- end }} {{- end }}