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.

14 lines
375B

  1. {% extends "index.html" %}
  2. {% block content %}
  3. {% for page in section.pages %}
  4. {{page.title}}
  5. {% endfor %}
  6. {{ section.relative_path | safe }}
  7. {% for sub in section.subsections %}
  8. {% set subsection = get_section(path=sub) %}
  9. {{subsection.title}}
  10. Sub-pages: {{subsection.pages | length}}
  11. {% endfor %}
  12. {% endblock content %}