{{- $page := .page }} {{- if and (not $page) .context }} {{- $page = .context }} {{- warnf "%q: DEPRECATED parameter 'context' for shortcode 'tabs' found, use 'page' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration#5180" $page.File.Filename }} {{- end }} {{- $groupid := .groupid | default (partial "make-random-md5.hugo" $page) | plainify | anchorize }} {{- $color := .color }} {{- $style := .style }} {{- $title := .title }} {{- $icon := .icon }} {{- $tabs := slice }} {{- range $tab := (.content | default slice) }} {{- if and (not $tab.title) $tab.name }} {{- warnf "%q: DEPRECATED parameter 'name' for shortcode 'tab' found, use 'title' instead; see https://mcshelby.github.io/hugo-theme-relearn/basics/migration#5160" $page.File.Filename }} {{- $tab = merge $tab (dict "title" .name) }} {{- end }} {{- with $tab }} {{- $color := .color | default $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 $style | default (cond (ne $color "") "filled" "initial") }} {{- $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 }} {{- if $hasContent }} {{- $tabs = $tabs | append (dict "color" $color "content" $content "icon" $icon "itemid" (printf "%s%s" ($title | $page.RenderString | plainify | anchorize) ($icon | plainify | anchorize)) "style" $style "title" $title ) }} {{- end }} {{- end }} {{- end }} {{- $color = .color | default "" }} {{- $style = .style | default (cond (ne $color "") "filled" "initial") }} {{- $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 }} {{- with $page }} {{- if len $tabs -}}