The first page you create seems to be the home page, just add other root pages as needed and enable navigation on them. This is what I did.
Our first page was a test, and then a few child pages. on the administration page, you can click and drag the pages to change the child / parent order. we rename the test to the home page and translate the child pages to another root page.
You can also override the default menu by creating a template in the /menu.html menu. There you can override the order by adding if statements to some. You can also write it in your base.html, having a menu: <ul id=menu> <li><a href="/foo/>foo></a></li> <li><a href="/">Home</a></li> {% show_menu %} <ul>
And you just have a bar and other pages that you wanted in navigation, but not foo or home.
There is an icon on the homepage on which other pages will be displayed, indicating the root page that I assume.
source share