How can I show a collection inside a page?
This is my .md page
TXT
title: 'Quote Archive '
published: true
metadata:
keywords: 'home'
taxonomy:
category:
- main
tag: - 'home'
menu: 'Home'
slug: home
process:
markdown: false
twig: true
routable: true
cache_enable: true
visible: true
content:
items: '@root'TWIG{% for p in page.collection %} <h2> {{ p.title }} </h2> {{ p.summary }} {% endfor %}
this is the result:

how can I not show the collection code before the collection?