The idea is to have a template where each page can pull in posts whose category name is the same as that of the page.
This is the ugly hack I've got going so far, where I sniff the url, and use the string to build the category query:
if (preg_match('/about/',$query_string)) {
$mycat=substr($query_string,22);
}
query_posts("category_name=$mycat);
I'm sure someone out there can do this better.
Thanks!
alvar