You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
785B

  1. {% extends "index.html" %}
  2. {% block title %}{{ super() }} - Documentation {% endblock title %}
  3. {% block extra_content_class %}content--reversed{% endblock extra_content_class %}
  4. {% block content %}
  5. {% set section = get_section(path="documentation/_index.md") %}
  6. <div class="documentation container">
  7. <aside class="documentation__sidebar">
  8. {% for subsection in section.subsections %}
  9. <li>
  10. {{ subsection.title }}
  11. <ul>
  12. {% for page in subsection.pages | reverse %}
  13. <li>{{page.title}}</li>
  14. {% endfor %}
  15. </ul>
  16. </li>
  17. {% endfor %}
  18. </aside>
  19. <div class="documentation__content">
  20. hey
  21. </div>
  22. </div>
  23. {% endblock content %}