I'm trying to build single-page theme. I want user to navigate thru menu with anchors (for example <a href="#About">About</a>).
I've extended Walker for wp_list_pages so it outputs anchors instead of permalinks. How to bite it now? I thought I will use query_posts for 'post_type' => 'page' and just style those pages but is there more flexible way of doing this? Also this query displays all pages (all I want is just depth = 1) and I don't know how to order them same way as wp_list_pages does.
Maybe there is some text to read about this kind of pages on the internet?