globaltoc.html 968 B

1234567891011121314151617181920212223242526
  1. {# 自定义全局目录模板,支持4级导航深度 #}
  2. {%- if theme_navigation_depth %}
  3. {%- set navigation_depth = theme_navigation_depth %}
  4. {%- else %}
  5. {%- set navigation_depth = 4 %}
  6. {%- endif %}
  7. <div class="globaltoc">
  8. <h3><a href="{{ pathto(master_doc) }}">{{ _('Table of Contents') }}</a></h3>
  9. {{ toctree(maxdepth=navigation_depth, collapse=False, includehidden=True, titles_only=False) }}
  10. </div>
  11. {# 中英文切换UI - 位于多级目录下方,作为独立的区域 #}
  12. <div class="language-switch-container">
  13. <div class="language-switch" id="language-switch">
  14. <div class="language-switch__container">
  15. <button class="language-switch__option" data-lang="chinese" aria-label="切换到中文">
  16. 中文
  17. </button>
  18. <span class="language-switch__separator">|</span>
  19. <button class="language-switch__option" data-lang="english" aria-label="Switch to English">
  20. English
  21. </button>
  22. </div>
  23. </div>
  24. </div>