mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 21:15:07 +00:00
28 lines
614 B
HTML
28 lines
614 B
HTML
|
<!-- 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>
|