7 lines
158 B
HTML
7 lines
158 B
HTML
{% extends "page.html" %}
|
|
{% block body %}
|
|
{% for child in this.children %}
|
|
<a href="{{child|url}}">{{ child.title }}</a>
|
|
{% endfor %}
|
|
{% endblock %}
|