mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
|
{{- $onempty := cond (isset . "onempty") .onempty "hide" }}
|
||
|
{{- $onwidths := cond (isset . "onwidths") .onwidths "show" }}
|
||
|
{{- $onwidthm := cond (isset . "onwidthm") .onwidthm "show" }}
|
||
|
{{- $onwidthl := cond (isset . "onwidthl") .onwidthl "show" }}
|
||
|
{{- with .page }}
|
||
|
{{- $format := partial "get-format.hugo" . }}
|
||
|
{{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
|
||
|
{{- $defaultDisableToc := .Site.Params.disableToc | default false }}
|
||
|
{{- $currentDisableToc := .Params.disableToc | default $defaultDisableToc }}
|
||
|
{{- if and (eq $outputFormat "html") (not $currentDisableToc) }}
|
||
|
{{- $content := partial "toc-class.html" . }}
|
||
|
{{- $hascontent := not (eq 0 (int (len (trim ($content | plainify) "\n\r\t ")))) }}
|
||
|
{{- if not $hascontent }}
|
||
|
{{- $content = " " }}
|
||
|
{{- end }}
|
||
|
{{- partial "topbar/func/button.html" (dict
|
||
|
"page" .
|
||
|
"class" "topbar-button-toc"
|
||
|
"href" "javascript:toggleTopbarFlyout(this)"
|
||
|
"icon" "list-alt"
|
||
|
"onempty" $onempty
|
||
|
"onwidths" $onwidths
|
||
|
"onwidthm" $onwidthm
|
||
|
"onwidthl" $onwidthl
|
||
|
"title" (printf "%s (CTRL+ALT+t)" (T "Toc-toggle"))
|
||
|
"content" $content
|
||
|
)}}
|
||
|
{{- end }}
|
||
|
{{- end }}
|