mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-10 20:45:08 +00:00
54 lines
1.7 KiB
HTML
54 lines
1.7 KiB
HTML
<md-sidenav-container>
|
|
|
|
<div id="fuse-main-content" fxFlexFill>
|
|
|
|
<!-- TOOLBAR: Above -->
|
|
<ng-container *ngIf="layoutSettings.toolbar === 'above'">
|
|
<fuse-toolbar class="above"></fuse-toolbar>
|
|
</ng-container>
|
|
<!-- / TOOLBAR: Above -->
|
|
|
|
<div id="wrapper">
|
|
|
|
<fuse-navbar [folded]="false" class="md-primary-700-bg left-navbar" *ngIf="layoutSettings.navigation === 'left'"></fuse-navbar>
|
|
|
|
<div class="content-wrapper">
|
|
|
|
<!-- TOOLBAR: Below -->
|
|
<ng-container *ngIf="layoutSettings.toolbar === 'below'">
|
|
<fuse-toolbar class="below"></fuse-toolbar>
|
|
</ng-container>
|
|
<!-- / TOOLBAR: Below -->
|
|
|
|
<fuse-content perfect-scrollbar></fuse-content>
|
|
|
|
<!-- FOOTER: Below -->
|
|
<ng-container *ngIf="layoutSettings.footer === 'below'">
|
|
<fuse-footer class="below"></fuse-footer>
|
|
</ng-container>
|
|
<!-- / FOOTER: Below -->
|
|
|
|
</div>
|
|
|
|
<fuse-navbar [folded]="false" class="md-primary-700-bg right-navbar" *ngIf="layoutSettings.navigation === 'right'"></fuse-navbar>
|
|
|
|
</div>
|
|
|
|
<!-- FOOTER: Above -->
|
|
<ng-container *ngIf="layoutSettings.footer === 'above'">
|
|
<fuse-footer class="above"></fuse-footer>
|
|
</ng-container>
|
|
<!-- FOOTER: Above -->
|
|
|
|
</div>
|
|
|
|
<!-- QUICK PANEL -->
|
|
<md-sidenav fuseMdSidenavHelper="quick-panel" align="end">
|
|
<fuse-quick-panel></fuse-quick-panel>
|
|
</md-sidenav>
|
|
<!-- / QUICK PANEL -->
|
|
|
|
</md-sidenav-container>
|
|
|
|
<fuse-theme-options></fuse-theme-options>
|