{{- $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" }} {{- $boxStyle := partial "_relearn/boxStyle.gotmpl" (dict "style" $style "title" .title "icon" .icon) }} {{- $title := trim ($boxStyle.title) " " }} {{- $icon := trim ($boxStyle.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 }}