I'm trying to make my Umbraco layout. I have set up Umbraco before and used it, but my layout was as following:
- Home
-- About Us Page
-- Products Page
-- etc. etc.
That structure allowed me to visit /
and get the home page, but having the subpages (About Us and Products) as children of Home does not make any sense. They are not connected together at all, except they all use a Master template.
If I want to make a better structured setup for my new page, I would assume this would be the best approach:
- Master
-- Home Page
-- About Us Page
-- Products Page
-- etc. etc.
However, this would mean that visiting /
would give me the Master template without content, but visiting /home
would give me what I want.
So what is the most ideal setup? It seems weird they are all inheriting from the Home document type, because that's what my /
root page should be.