Adding Templates and Views

Learn how to add new templates and views for our header sub-application.

We'll cover the following...

With our models set up, we can move on to changing our index.html file so our header menu will be rendered by Marionette instead of static HTML.

Adding header templates

Here’s what we have now:

Press + to interact
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<span class="brand" href="#">Contact manager</span>
</div>
</div>
</div>
<div id="app-container">
<div id="main-region" class="container">
<p>Here is static content in the web page. You'll notice that it gets
replaced by our app as soon as we start it.</p>
</div>
<div id="dialog-region"></div>
</div>

We need to remove the header menu in lines 1–7 from the displayed ...