I am curious if anyone has a solution or has managed to create a nested url structure.
Most applications and examples I have seen within the Meteor community typically use a single url structure in terms of dynamic routing of content. Or the structure is hardcoded at the link level.
Although this is nice its not really optimal when building a CMS or a traditional website.
Examples : /foo/ . or /foo/bar/ <- usually hardcoded at the link level.
I’m looking for a solution such as /foo/bar/ /foo/baz/ Where Bar and Baz are true children of /foo/.
I have explored iron:router and kadira:flow-router. Both are great solutions, but as stated above I still haven’t found a true example of how to create the parent child nav item scenario.