You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
711 B
HTML
26 lines
711 B
HTML
{{ $params := . }}
|
|
|
|
{{ $page := . }}
|
|
{{ $listshowcontent := false }}
|
|
|
|
{{ if reflect.IsMap $params }}
|
|
{{ $page = $params.page }}
|
|
{{ $listshowcontent = $params.listshowcontent }}
|
|
{{ end }}
|
|
|
|
{{ $class := $page.Param "paige.main.table_of_contents.class" | default "border mb-3 pe-3 ps-3 pt-3 rounded" }}
|
|
|
|
{{ if and $page.Content ($page.Param "paige.main.table_of_contents.hide" | not) (not $listshowcontent) (ne $page.TableOfContents `<nav id="TableOfContents"></nav>`) }}
|
|
<section class="paige-toc">
|
|
{{ with $class }}
|
|
<div class="{{ . }}">
|
|
{{ end }}
|
|
|
|
{{ $page.TableOfContents }}
|
|
|
|
{{ if $class }}
|
|
</div>
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|