Website/layouts/partials/posts/toc.html
Martin Gasque 0ba3f3c7c5 Initial commit
Will it deploy one day ?
2024-02-20 08:59:37 +01:00

13 lines
508 B
HTML

<!-- Reusable template for table of contents (i.e. start or sidebar of posts single pages) -->
{{ if .Params.toc }}
<aside class="toc" {{if eq "projets" .Section}} style="height: auto;position: relative; margin-bottom: 5rem;" {{ end }}>
<div id="js-toc-toggle">
<h2 class="toc-header">{{.Site.Params.content_table}}</h2>
<span class="toc-drop-icon">&blacktriangledown;</span>
</div>
<div id="js-toc-contents" class="toc-contents">{{ .TableOfContents }}</div>
</aside>
{{ end }}