fuse-angular/src/app/core/components/layout/layout.component.html

28 lines
614 B
HTML
Raw Normal View History

2017-07-12 12:35:07 +00:00
<!-- TOOLBAR: Above -->
<ng-container *ngIf="layoutSettings.toolbar === 'above'">
<fuse-toolbar></fuse-toolbar>
</ng-container>
<!-- / TOOLBAR: Above -->
<div id="wrapper">
<!-- NAVIGATION: Left -->
<ng-container *ngIf="layoutSettings.navigation === 'left'">
<fuse-navbar></fuse-navbar>
<div class="content-wrapper">
<ng-container *ngIf="layoutSettings.toolbar === 'below'">
<fuse-toolbar></fuse-toolbar>
</ng-container>
<fuse-content></fuse-content>
</div>
</ng-container>
<!-- / NAVIGATION: Left -->
</div>