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.
16 lines
285 B
HTML
16 lines
285 B
HTML
5 months ago
|
{{/*
|
||
|
|
||
|
A modified version of the toc.html partial in Docsy.
|
||
|
|
||
|
*/}}
|
||
|
{{ $page := .Params }}
|
||
|
{{ if not .Params.notoc -}}
|
||
|
{{ with .TableOfContents -}}
|
||
|
<hr>
|
||
|
<div id="toc">
|
||
|
<a id="toc-title" href="#">{{ $page.Title }}</a>
|
||
|
{{ . }}
|
||
|
</div>
|
||
|
{{ end -}}
|
||
|
{{ end -}}
|