pages with the same template have a page-field. i can select multiple pages and they are like tags
i output them like this
<?php
foreach($page->tag as $tags) {
echo "<a href='$tags->url'>{$tags->title}</a>";
}
?>
the tag-pages ($tags->url) should just show the pages with the certain tag selected.
is there a way to filter?
where in the documentation do i find something about this.