Liferay 6.x, 7.x
AngularJS 1.6.x
To addui-boostrap into AngularJS, we will reuse the AngularJS portlet created earlier with ui-router.
Steps to add ui-bootrap are pretty simple, we just need to import ui-bootstrap-tpls-2.5.0.min.js in view.jsp
<script src="https://angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.5.0.min.js" />
and also bootstrap.min.css
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
Lastly, we can start using bootstrap components by referring the bootstrap demo page.
Done!!