ngx-admin/src/app/@theme/layouts/one-coll-layout/one-coll.layout.ts

29 lines
644 B
TypeScript
Raw Normal View History

2017-04-13 14:24:23 +03:00
import { Component } from '@angular/core';
@Component({
selector: 'one-coll-layout',
template: `
<nga-layout>
<nga-layout-header fixed>
<base-header></base-header>
</nga-layout-header>
2017-04-17 19:01:47 +03:00
<nga-sidebar>
2017-04-17 19:01:47 +03:00
<nga-sidebar-content>
<ng-content select="nga-menu"></ng-content>
</nga-sidebar-content>
</nga-sidebar>
2017-04-18 15:45:49 +03:00
2017-04-13 14:24:23 +03:00
<nga-layout-column>
<ng-content select="router-outlet"></ng-content>
2017-04-13 14:24:23 +03:00
</nga-layout-column>
2017-04-18 15:45:49 +03:00
<nga-layout-footer fixed>
2017-04-18 20:29:57 +03:00
<base-footer></base-footer>
2017-04-17 19:01:47 +03:00
</nga-layout-footer>
2017-04-13 14:24:23 +03:00
</nga-layout>
`,
})
export class OneCollLayoutComponent {
2017-04-13 14:24:23 +03:00
}