mirror of https://github.com/getzola/zola
11 lines
331 B
HTML
11 lines
331 B
HTML
{% extends "index.html" %}
|
|
{% block content %}
|
|
{{ section.relative_path | safe }}
|
|
{{ section.content | safe }}
|
|
{% for sub in section.subsections %}
|
|
{% set subsection = get_section(path=sub) %}
|
|
{{subsection.title}}
|
|
Sub-pages: {{subsection.pages | length}}
|
|
{% endfor %}
|
|
{% endblock content %}
|