hugo-geekblog/layouts/shortcodes/toc.html

6 lines
243 B
HTML
Raw Normal View History

2020-07-06 20:55:32 +02:00
{{ $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 }}