globaltoc.html 633 B

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