I have a content type called services_list_page that is used to create a landing page that people can then use to navigate to child pages using the content type service_details. The relationship between these pages is only defined by a menu and no where else currently.
Program Service (services_list_page)
-- Cat1: (not a page, just a category type thing in menu)
-- child 1 (service_details)
-- child 2 (service_details)
-- Cat2
-- child 3
-- child4
-- and so on..
I need to have these child pages not only listed in the menu but also dynamically within the content in lists (ul li) one list per child page "category". I have overridden the node template file for these content types. What would the best way to do this with either a module or some code within the template file to pull this data dynamically?