Files
blog/themes/geekblog/layouts/shortcodes/toc.html
T
2021-05-07 12:21:40 +02:00

6 lines
243 B
HTML

{{ $tocLevels := default (default 6 .Site.Params.GeekblogToC) .Page.Params.GeekblogToC }}
{{ if and $tocLevels .Page.TableOfContents }}
<div class="gblog-toc gblog-toc__level--{{$tocLevels}}">{{ .Page.TableOfContents }}<hr></div>
{{ end }}