summaryrefslogtreecommitdiff
path: root/templates/partials/list.html.twig
blob: eb2f48589a412e304f4b7a26f9774e5b86820a77 (plain) (blame)
1
2
3
4
5
6
7
8
9
<ul>
    {% for current_page in page.children %}
        <li>
            <a href="{{ current_page.url|e }}">
                {{ current_page.title|e }}
            </a>
        </li>
    {% endfor %}
</ul>