disable toc

This commit is contained in:
gws 2024-11-10 15:23:31 +01:00
parent 0a2fd4fb86
commit 8eb64523d0
6 changed files with 99 additions and 105 deletions

View file

@ -65,4 +65,24 @@
<!-- if i am <:checked/> -->
</nav>
{% endmacro render_header %}
{% endmacro render_header %}
{% macro render_toc(toc) %}
<div class="toc">
<div class="toc-sticky">
{% for h in toc %}
<div class="toc-item">
<a class="subtext" href="{{h.permalink | safe}}">{{ h.title }}</a>
</div>
{% if h.children %}
{% for h2 in h.children %}
<div class="toc-item-child">
<a class="subtext" href="{{h2.permalink | safe}}"><small>- {{ h2.title }}</small></a>
</div>
{% endfor %}
{% endif %}
{% endfor %}
</div>
</div>
{% endmacro render_toc %}