2018-06-12 07:44:00 +00:00
|
|
|
<!-- VERTICAL LAYOUT 1 -->
|
|
|
|
<ng-container *ngIf="fuseConfig.layout.style === 'vertical-layout-1'">
|
|
|
|
<vertical-layout-1></vertical-layout-1>
|
2018-05-29 11:58:48 +00:00
|
|
|
</ng-container>
|
|
|
|
|
|
|
|
<!-- VERTICAL LAYOUT 2 -->
|
|
|
|
<ng-container *ngIf="fuseConfig.layout.style === 'vertical-layout-2'">
|
|
|
|
<vertical-layout-2></vertical-layout-2>
|
|
|
|
</ng-container>
|
|
|
|
|
2018-06-12 07:44:00 +00:00
|
|
|
<!-- VERTICAL LAYOUT 3 -->
|
|
|
|
<ng-container *ngIf="fuseConfig.layout.style === 'vertical-layout-3'">
|
|
|
|
<vertical-layout-3></vertical-layout-3>
|
|
|
|
</ng-container>
|
|
|
|
|
2018-06-06 18:20:04 +00:00
|
|
|
<!-- HORIZONTAL LAYOUT 1 -->
|
|
|
|
<ng-container *ngIf="fuseConfig.layout.style === 'horizontal-layout-1'">
|
2018-06-07 18:12:12 +00:00
|
|
|
<horizontal-layout-1></horizontal-layout-1>
|
2018-05-29 11:58:48 +00:00
|
|
|
</ng-container>
|
2018-05-30 09:23:09 +00:00
|
|
|
|
|
|
|
<!-- THEME OPTIONS PANEL -->
|
|
|
|
<button mat-icon-button class="mat-primary-bg mat-elevation-z2 theme-options-button"
|
2018-06-15 14:45:27 +00:00
|
|
|
(click)="toggleSidebarOpen('themeOptionsPanel')">
|
2018-05-30 09:23:09 +00:00
|
|
|
<mat-icon>settings</mat-icon>
|
|
|
|
</button>
|
|
|
|
|
2018-06-06 18:20:04 +00:00
|
|
|
<fuse-sidebar name="themeOptionsPanel" class="theme-options-sidebar" position="right" [invisibleOverlay]="true">
|
2018-05-30 09:23:09 +00:00
|
|
|
<fuse-theme-options></fuse-theme-options>
|
|
|
|
</fuse-sidebar>
|