fix(demo): replace @akveo with @nebular

This commit is contained in:
Alexander Zhukov 2017-08-01 17:42:21 +03:00
parent b772882cd6
commit 210c6f2355
129 changed files with 1010 additions and 1010 deletions

View file

@ -5,34 +5,34 @@ import { Component } from '@angular/core';
selector: 'ngx-three-columns-layout',
styleUrls: ['./three-columns.layout.scss'],
template: `
<nga-layout>
<nga-layout-header fixed>
<nb-layout>
<nb-layout-header fixed>
<ngx-header></ngx-header>
</nga-layout-header>
</nb-layout-header>
<nga-sidebar class="menu-sidebar" tag="menu-sidebar" responsive >
<nga-sidebar-header>
<nb-sidebar class="menu-sidebar" tag="menu-sidebar" responsive >
<nb-sidebar-header>
<button class="btn btn-hero-success main-btn">
<i class="ion ion-social-github"></i> <span>Support Us</span>
</button>
</nga-sidebar-header>
<ng-content select="nga-menu"></ng-content>
</nga-sidebar>
</nb-sidebar-header>
<ng-content select="nb-menu"></ng-content>
</nb-sidebar>
<nga-layout-column class="small">
</nga-layout-column>
<nb-layout-column class="small">
</nb-layout-column>
<nga-layout-column right>
<nb-layout-column right>
<ng-content select="router-outlet"></ng-content>
</nga-layout-column>
</nb-layout-column>
<nga-layout-column class="small">
</nga-layout-column>
<nb-layout-column class="small">
</nb-layout-column>
<nga-layout-footer fixed>
<nb-layout-footer fixed>
<ngx-footer></ngx-footer>
</nga-layout-footer>
</nga-layout>
</nb-layout-footer>
</nb-layout>
`,
})
export class ThreeColumnsLayoutComponent {