summaryrefslogtreecommitdiffstats
path: root/docs/_templates/globaltoc.html
blob: d10f5f77f4f4abc1203a3b0e27f3feb749fb909c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="sidebar-block">
  <div class="sidebar-toc">
    {# Restrict the sidebar toc depth to two levels while generating command usage pages.
       This avoids superfluous entries for each "Description" and "Examples" heading. #}
    {% if pagename.startswith("usage/") and pagename not in (
      "usage/general", "usage/help", "usage/debug", "usage/notes",
    ) %}
      {% set maxdepth = 2 %}
    {% else %}
      {% set maxdepth = 3 %}
    {% endif %}

    {% set toctree = toctree(maxdepth=maxdepth, collapse=True) %}
    {% if toctree %}
      {{ toctree }}
    {% else %}
      {{ toc }}
    {% endif %}
  </div>
</div>