Files
paige-hugo/layouts/partials/paige-toc.html
2022-12-19 19:49:50 -08:00

12 lines
369 B
HTML

{{ if and .Content .Params.paige.toc (ne .TableOfContents `<nav id="TableOfContents"></nav>`) }}
<section>
<div class="container-fluid mb-3">
<div class="justify-content-center row">
<div class="border col col-auto pe-3 ps-3 pt-3 rounded">
{{ .TableOfContents }}
</div>
</div>
</div>
</section>
{{ end }}