It turned out the problem was in my main controllers index view:


<div ng-view>

This was closing the div tag, so I switched it back to plain HTML with a closing tag and works great:

<div ng-view></div>