Reputation: 37
I am making use of yeoman angular fullstack generator
i want to install admin-lte-angular theme in my app
i have installed it using bower
but i don't know how install it in angular app
please help to install it
Upvotes: 1
Views: 6722
Reputation: 1059
If you are using this https://github.com/sarahhenderson/admin-lte-angular Note that the author stated it is a working in progress. So I don't think it is a stable code to use.
Upvotes: 0
Reputation: 3104
Add the css and the javascript libs to the index.html:
<link href="bower_components/admin-lte-angular/admin-lte-angular.css">
// angular.js must be loaded first!
<script src="bower_components/admin-lte-angular/admin-lte-angular.js"></script>
Add 'admin-lte-angular' to the module dependencies:
angular.module('dashboardApp', [ 'admin-lte-angular' ])
Upvotes: 0