This commit is contained in:
Sercan Yemen
2017-07-12 15:35:07 +03:00
parent 829f570913
commit a8844e8b46
71 changed files with 1361 additions and 856 deletions

View File

@@ -0,0 +1,27 @@
<!-- 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>