zola/components/site/test_site/templates/section.html

11 lines
241 B
HTML
Raw Normal View History

{% extends "index.html" %}
{% block content %}
{% for page in section.pages %}
{{page.title}}
{% endfor %}
{% for subsection in section.subsections %}
{{subsection.title}}
{% endfor %}
{% endblock content %}