Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

30 lines
715B

  1. ---
  2. title: "{{ title | striptags }}"
  3. layout: single
  4. {% if not pagename.endswith('index') -%}
  5. url: docs/{{pagename}}{{file_suffix}}
  6. {%- endif %}
  7. ---
  8. <div class="toc global" open>
  9. <div class="toc-content" role="navigation" aria-label="global navigation">
  10. <div class="toc-header">Contents</div>
  11. {{ toctree(maxdepth=5, titles_only=True) }}
  12. </div>
  13. </div>
  14. <div class="toc local" open>
  15. <div class="toc-content" role="navigation" aria-label="local navigation">
  16. <div class="toc-header">On this page</div>
  17. {{ toc }}
  18. </div>
  19. </div>
  20. <div class="page-content">
  21. {{ body }}
  22. {% if next %}
  23. <div class="next-link">
  24. Next: <a href="{{ next.link }}">{{ next.title }}</a>
  25. </div>
  26. {% endif %}
  27. </div>