don't show table of contents at the end

This commit is contained in:
Deniz Akşimşek 2022-12-12 11:59:00 +03:00
parent f9e46e69c4
commit 396f8f2863

View File

@ -15,7 +15,7 @@ layout: layout.njk
{% set prev = search.previousPage(url, "chapter!=undefined", "chapter") %}
{% set next = search.nextPage(url, "chapter!=undefined", "chapter") %}
{% macro nav() %}
{% macro nav(show_toc=false) %}
<nav aria-label="Chapters navigation">
<div class="f-row flex-wrap:wrap justify-content:space-between">
{% if prev or part %}
@ -33,6 +33,7 @@ layout: layout.njk
{% endif %}
</div>
{% if show_toc %}
<details>
<summary>Contents</summary>
@ -48,10 +49,11 @@ layout: layout.njk
{% endmacro %}
{{ asciidoc and toc(asciidoc) }}
</details>
{% endif %}
</nav>
{% endmacro %}
{{ nav() }}
{{ nav(show_toc=true) }}
</header>