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: 337ecb6fcd76d7c330ef3fd8448665b225bd1818 (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-s {{ end }}">
    {{ .TableOfContents }}
</div>
<script>
    window.addEventListener('DOMContentLoaded', () => {
        enableStickyToc();
    });
</script>