ngx-admin-lte
Version:
AdminLTE theme for angular
16 lines (15 loc) • 420 B
HTML
<section class="content-header" *ngIf="display">
<h1>
{{ header }}
<small>{{ description }}</small>
</h1>
<ol class="breadcrumb">
<ng-container *ngFor="let item of levels">
<li [class.active]="item.active">
<a [routerLink]="item.link">
<i *ngIf="item.icon !=null" class="fa fa-{{item.icon}}"></i> {{ item.title }}
</a>
</li>
</ng-container>
</ol>
</section>