I am working on my first Ember app and everything was going well. It’s a basic blog. I had an admin section for adding, editing, and deleting records and an end-user section that didn’t use Ember.
I’m now trying to mix the two so that I can edit content directly from the end-user page. I still want my end-user code to be regular-old HTML - not handlebar templates that render content. I want to add handlebar templates to different parts of the page for the interactive components. For instance, put a login link in the upper right hand corner, show a form for editing content for logged-in users, etc. However, it looks like you can’t really use Ember that way. It appears that you have to use one section of the page for all the handlebar templates. You can separate them and place views in different parts of the page.
I tried using “replaceIn” but I have not had any luck getting it to work.
Can anyone point me in the general right direction? I’ve hit a brick wall.