mirror of
https://github.com/getzola/zola
synced 2024-12-16 23:23:07 +00:00
10 lines
241 B
HTML
10 lines
241 B
HTML
{% extends "index.html" %}
|
|
|
|
{% block content %}
|
|
{% for page in section.pages %}
|
|
{{page.title}}
|
|
{% endfor %}
|
|
{% for subsection in section.subsections %}
|
|
{{subsection.title}}
|
|
{% endfor %}
|
|
{% endblock content %}
|