1
我的問題是: 如果我有一個網頁,這樣寫的: (保存home.en.md)如何顯示樹枝收集GRAV
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 %}