i want to make a single page site which has subpages with following structure
about us
team
-member1
-member2
contact
and i want the output to be like
<div class="about-us">
team content
</div>
<div class="team">
team content
<div class="subpages">
<div class="member1">
member1 content
</div>
<div class="member12">
member2 content
</div>
</div>
</div>
<div class="contact">
team content
</div>
and this is my loop so far
<?php query_posts(array('post_type'=>page, 'orderby'=>menu_order, 'post_parent' => $thePostID)); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( 0 == $post->post_parent ) { ?>
<h1><?php the_title(); ?></h1>
<?php } else { ?>
<h3><?php the_title(); ?></h3>
<?php } ?>
<h3><?php the_title(); ?></h3>
<?php the_content(); ?>
<?php endwhile; endif; ?>
thanks for helping, helmut