e0950fc973
When internet connection speeds are poor, there is a chance that the title of the TOC will appear earlier than its entries, causing a visual cutoff.
13 lines
414 B
HTML
13 lines
414 B
HTML
{% assign enable_toc = false %}
|
|
{% if site.toc and page.toc %}
|
|
{% if page.content contains '<h2' or page.content contains '<h3' %}
|
|
{% assign enable_toc = true %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if enable_toc %}
|
|
<section id="toc-wrapper" class="d-none ps-0 pe-4">
|
|
<h2 class="panel-heading ps-3 mb-2">{{- site.data.locales[include.lang].panel.toc -}}</h2>
|
|
<nav id="toc"></nav>
|
|
</section>
|
|
{% endif %}
|