This repository was archived by the owner on May 26, 2019. It is now read-only.

Description
In Ember guide, chapter "Defining your routes/Nested routes"
It is explain :
To generate the above nested route, run:
"ember generate route posts/new"
And then add the {{outlet}} helper to your template where you want the nested template to display:
(in templates/posts.hbs)
As explained, we think that with "ember generate route posts/new", the "templates/posts.hbs" should already be created.
The guide should tell that we have to run "ember generate route posts" before.
Or may be Ember cli should create all the needed routes automatically ?