How do I list the pages of a custom taxonomy?

To answer my question:

You can use the loop to query only posts based on a taxonomy & terms :

query_posts('taxonomy'='term');

& then run the loop:

if ( have_posts() ) : while ( have_posts() ) : the_post();
echo '<h6>'; ?>
<a href="https://wordpress.stackexchange.com/questions/36592/<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php
echo '</h6>';
the_date();
the_excerpt();