Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post-toc.html « components « partials « layouts - github.com/wangchucheng/hugo-eureka.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66fd401b4d0b9e293c4e138c2f3ad614d822536e (plain)
1
2
3
4
5
6
7
8
9
10
11
<div class="sticky top-16 z-10 hidden lg:block px-6 py-4 {{ if eq .Type "docs" }} bg-secondary-bg pt-16 -mt-16 {{ else }} bg-primary-bg {{ end }}">
    <span class="text-lg font-semibold">{{ i18n "onThisPage" }}</span>
</div>
<div class="sticky-toc hidden lg:block px-6 pb-6 {{ if eq .Type "docs" }} pt-10 -mt-10 border-l {{ end }}">
    {{ .TableOfContents }}
</div>
<script>
    window.addEventListener('DOMContentLoaded', () => {
        enableStickyToc();
    });
</script>