我的问题是:如果我有这样写的页面:(保存的 home.en.md)
title: 'Home'
published: true
metadata:
keywords: 'home'
taxonomy:
category: - main
tag: - 'home'
menu: 'Home'
slug: home
process:
twig: true
routable: true
cache_enable: true
visible: true
content:
items: @root
order:
by: date
dir: desc
limit: 10
pagination: true
---
This are all our pages:
我必须如何以及在哪里添加树枝文本?
{% for p in page.collection %}
<h3> {{ p.title }} </h3>
{{ p.summary }}
{% endfor %}