What is the order of the Ember template rendering?

For the execution sequence of the template I have bit of doubt, ember template execution order is started from the parent template or from the sub template?According to the official website saying “Each template will be rendered into the {{outlet}} of its parent route’s template. For example, the posts.new route will render its template into the post.hbs’s {{outlet}}, and the posts route will render its template into the application.hbs’s {{outlet}}.” it’s means to execute the sub template and then render it to the parent template, and then execute the parent template? For the execution sequence of the template I have bit of doubt, ember template execution order is started from the master template or from the template to start with?