Angular theme Installation admin-lte-angular

6.6k Views Asked by At

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

2

There are 2 best solutions below

4
On

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' ])
0
On

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.