dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_hugo-coder
mirror of
https://github.com/luizdepra/hugo-coder.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Install tooling
Luiz F. A. de Prá
4 days ago
011adf79ec795af29e06f393c9eb774a4b09cce4
[external-software/github_gohugo_theme_hugo-coder.git]
/
layouts
/
_partials
/
toc.html
1
2
3
4
5
6
7
8
9
{{- $toc := default .Site.Params.Entry.toc .Params.toc -}}
{{- $tocOpen := default .Site.Params.Entry.tocOpen .Params.tocOpen -}}
{{- if $toc }}
<details class="entry__toc toc" {{ if $tocOpen }}open{{ end }}>
<summary class="toc__title">{{- T "entry_toc" -}}</summary>
{{ .TableOfContents }}
</details>
{{- end }}