zola/test_site/templates/section.html

8 lines
201 B
HTML
Raw Permalink Normal View History

{% extends "sample/templates/section-specific-extends.html" %}
{% block content %}
{% for page in section.pages %}
{{page.title}}
{% endfor %}
{{ super() }}
{% endblock content %}