2017-03-14 12:25:45 +00:00
|
|
|
{% extends "index.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% for page in section.pages %}
|
|
|
|
{{page.title}}
|
|
|
|
{% endfor %}
|
2018-10-15 20:28:25 +00:00
|
|
|
{% for sub in section.subsections %}
|
|
|
|
{% set subsection = get_section(path=sub) %}
|
2017-03-14 12:25:45 +00:00
|
|
|
{{subsection.title}}
|
2017-09-12 07:13:10 +00:00
|
|
|
Sub-pages: {{subsection.pages | length}}
|
2017-03-14 12:25:45 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endblock content %}
|