I move part of the application to Ember as the first part, hopefully transferring the full version of the application. This is an app for rails, and I'm at the conceptual stage. In my rails view (index2.html.erb), I have the following:
<script type="text/x-handlebars">
<div>
here is outlet:
{{outlet}}
</div>
</script>
within index2
However, this displays the Ember output at the bottom of the html page as follows:

How can i fix this? Even if I put my Ember edition in my Rails layout, it will do the same.
thanks for any help
source
share