mirror of
https://github.com/thegeeklab/hugo-geekdoc.git
synced 2024-11-04 20:30:40 +00:00
add toc-tree shortcode
This commit is contained in:
parent
a476fd3a0f
commit
a5777c64ce
35
layouts/shortcodes/toc-tree.html
Normal file
35
layouts/shortcodes/toc-tree.html
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
{{ $tocLevels := default (default 6 .Site.Params.GeekdocToC) .Page.Params.GeekdocToC }}
|
||||||
|
|
||||||
|
{{ if $tocLevels }}
|
||||||
|
<div class="gdoc-toc gdoc-toc__level--{{$tocLevels}}">
|
||||||
|
{{ template "toc-tree" dict "sect" .Page.Pages }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
<!-- templates -->
|
||||||
|
{{ define "toc-tree" }}
|
||||||
|
<ul>
|
||||||
|
{{ range .sect.GroupBy "Weight" }}
|
||||||
|
{{ range .ByTitle }}
|
||||||
|
{{ if not .Params.geekdocHidden }}
|
||||||
|
<li>
|
||||||
|
{{ if or .Content .Params.geekdocFlatSection }}
|
||||||
|
<span>
|
||||||
|
<a href="{{ .RelPermalink }}" class="gdoc-toc__entry">
|
||||||
|
{{ partial "title" . }}
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
{{ else }}
|
||||||
|
<span>{{ partial "title" . }}</span>
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
|
{{ $numberOfPages := (add (len .Pages) (len .Sections)) }}
|
||||||
|
{{ if and (ne $numberOfPages 0) (not .Params.geekdocFlatSection) }}
|
||||||
|
{{ template "toc-tree" dict "sect" .Pages }}
|
||||||
|
{{ end }}
|
||||||
|
</li>
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
{{ end }}
|
Loading…
Reference in New Issue
Block a user