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

10 lines
391 B
HTML

<!-- Reusable template for table of contents (i.e. start or sidebar of posts single pages) -->
{{ if .Params.toc }}
<aside class="toc">
<div id="js-toc-toggle">
<h2 class="toc-header">Table of Contents</h2>
<span class="toc-drop-icon">&blacktriangledown;</span>
</div>
<div id="js-toc-contents" class="toc-contents">{{ .TableOfContents }}</div>
</aside>
{{ end }}