I need to have the children show up in their own unordered list (with each page in a list under the parent), which is also a list, like this:
<ul>
<li>Parent Page</li>
<ul>
<li>Child Page</li>
</ul>
<li>Another Page (not related to Parent Page)</li>
</ul>
Is that possible?