mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
62 lines
No EOL
2.8 KiB
HTML
62 lines
No EOL
2.8 KiB
HTML
{{- $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/releasenotes/5/#5-18-0" $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 "<p>" $content) "" }}
|
|
{{- if not (hasPrefix $content "<") }}
|
|
{{- $content = printf "<p>\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 "_relearn/makeRandomMd5.gotmpl" $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 -}}
|
|
<div class="{{ if $expander }}expand {{ end }}box {{ $class }} cstyle {{ $style }}"{{ if $color }} style="--VARIABLE-BOX-color: {{ $color }};"{{ end }}>
|
|
{{- if $expander }}
|
|
<input type="checkbox" id="R-expand-{{ $id }}" aria-controls="R-expandcontent-{{ $id }}"{{ if $expanded }} checked{{ end }}>
|
|
<label class="expand-label box-label" for="R-expand-{{ $id }}">
|
|
<i class="expander-icon fa-fw fas fa-chevron-down"></i>
|
|
<i class="expander-icon fa-fw fas fa-chevron-right"></i> {{ if $icon }}<i class="{{ $icon }}"></i>{{ end }}{{ if and $icon $title }} {{ end }}{{ $title | .RenderString }}
|
|
</label>
|
|
<div class="box-spacer"></div>
|
|
{{- else if or $icon $title }}
|
|
<div class="box-label">
|
|
{{ if $icon }}<i class="{{ $icon }}"></i>{{ end }}{{ if and $icon $title }} {{ end }}{{ $title | .RenderString }}
|
|
</div>
|
|
{{- end }}
|
|
{{- if $hasContent }}
|
|
{{ printf " <%s%s class=\"%s\">" $containerstyle $idattribute (delimit $containerclass " ") | safeHTML }}
|
|
{{ $content | safeHTML }}
|
|
{{ printf " </%s>" $containerstyle | safeHTML }}
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
{{- end }} |