I am creating an app, and there is used ui router, all html data append to this tag:
<div class="app" ui-view >
But I'd like to include header and footer to my app, and my question is - is it better to use smth like this in index.html:
<div ng-controller="top" header></div>
<div class="app" ui-view >
<div ng-controller="bottom" footer></div>
or I should include in every html page two directives - header & footer.