I'm looking for code to show the 'navigation' links (child pages) within the body of each page. It's very similar to what this exact drupal.org site does on some pages... like this one: http://drupal.org/getting-started ... see how 'Before you start' , 'Installation Guide' etc are duplicated in the leftside navigation and in the body of the page? That's exactly what I want to do. How do I do that? I'm using normal pages, not book pages. Somewhat close thread, but doesn't help: http://drupal.org/node/199083

Here's code I found that will show the entire navigation. I just need a tweak to only show the child pages.

$block = module_invoke('user', 'block', 'view', 1);
print $block['content'];

Any ideas?