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.

13 lines
336B

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