ember-templates Module
Parent: ember
Ember templates are executed by HTMLBars, an HTML-friendly version of Handlebars. Any valid Handlebars syntax is valid in an Ember template.
Showing a property
Templates manage the flow of an application's UI, and display state (through the DOM) to a user. For example, given a component with the property "name", that component's template can use the name in several ways:
// app/components/person.js
export default Ember.Component.extend({
name: 'Jill'
});