ページ一覧を表示する方法

表示中のページの1個下層ページの一覧を表示します

ヘッダー情報から表示する場合

---
title: Theme
content:
    items: '@self.children'
---

{% for p in page.collection %}
    <a href="{{ p.url|raw }}">{{ p.title }}<a>
{% endfor %}

取得する一覧を指定する場合

{% for p in pages.find('/').children %}
    <a class="nav-link" href="{{ p.url|raw }}">{{ p.title }}</a>
{% endfor %}

ページ一覧が表示されないときは、Twig が無効化されてるのかも