partial (partialName) public
Defined in packages/ember-htmlbars/lib/keywords/partial.js:9
The partial helper renders another template without changing the template context: {{foo}}
{{partial "nav"}}
The above example template will render a template named "-nav", which has the same context as the parent template it's rendered into, so if the "-nav" template also referenced {{foo}}, it would print the same thing as the {{foo}} in the above example. If a "-nav" template isn't found, the parti