chore: base layout

This commit is contained in:
tibing 2017-04-13 14:24:23 +03:00
parent 1fb884a633
commit d82d691681
19 changed files with 195 additions and 44 deletions

View file

@ -0,0 +1 @@
export * from './one-coll-layout/one-coll.layout';

View file

@ -0,0 +1,18 @@
import { Component } from '@angular/core';
@Component({
selector: 'one-coll-layout',
template: `
<nga-layout>
<nga-layout-header fixed></nga-layout-header>
<nga-sidebar fixed></nga-sidebar>
<nga-layout-column>
<ng-content></ng-content>
</nga-layout-column>
<nga-layout-footer fixed></nga-layout-footer>
</nga-layout>
`,
})
export class RootLayoutComponent {
constructor() { }
}