This howto shows you how you can generate a list of pages with the iterator components.
In your document, begin by opening your tag compeonent:
<iterator>
Then add your page selection with the page sql.
We select the last 6 pages that have been modified.
<data>select from pages order by date_modified desc limit 6</data>
Then define your fragment as being:
<fragment>
* [[$path|$title]]
</fragment>
Write the closing tag and save your page.
</iterator>
You obtain this result on this website.
You can use any component to layout your pages.
For instance, you can add them in a grid:
How to generate and layout a list of pages with a grid and their image?