Simply enough I do not want to define all my handlebar templates in my html file
I tried this
Here's another solution, inside your Ember view/component:
var viewClass = Ember.View.extend({ templateName: this.get('contentTemplate') }); var view = this.createChildView(viewClass); var html = view.renderToBuffer().buffer;