I'm using the UI-Router and I'm trying to embed two views on my page, on the official GitHub's Page you can see a plunker example that what I'm trying to achieve: http://plnkr.co/edit/SDOcGS?p=preview
Now I made a few modifications for my particular situation, basically I moved the home page to another file, so my template looks like this(see the full example HERE):
<body class="container">
<ui-view></ui-view>
</div>
And my home.html
<div class="navbar">
<div class="navbar-inner">
<a class="brand" ui-sref="index">Quick Start</a>
<ul class="nav">
<li><a ui-sref="index">Home</a></li>
<li><a ui-sref="route1">Route 1</a></li>
<li><a ui-sref="route2">Route 2</a></li>
</ul>
</div>
</div>
<div class="row">
<div class="span6">
<div class="well" ui-view="viewA"></div>
</div>
<div class="span6">
<div class="well" ui-view="viewB"></div>
</div>
</div>
On my example the nested views(viewA and viewB) are not embedded. I have been reading the documentation but I don't understand why my code doesn't works, I know I'm assuming something wrong, any help?