argos/dmp-frontend/src/app/app.component.html

43 lines
1.6 KiB
HTML
Raw Normal View History

2020-05-27 16:19:38 +02:00
<div class="wrapper" *ngIf="!onlySplash">
2019-05-16 18:11:41 +02:00
<div class="sidebar sidebar-shadow" data-color="danger" data-background-color="white"
data-image="./assets/images/logan-troxell-9187-unsplash.jpg">
2019-04-30 17:57:10 +02:00
<app-sidebar></app-sidebar>
<div class="sidebar-background" style="background-image: url(./assets/images/logan-troxell-9187-unsplash.jpg)">
2019-04-24 11:26:53 +02:00
</div>
2019-04-30 17:57:10 +02:00
</div>
2019-04-24 11:26:53 +02:00
<div class="main-panel">
<app-navbar></app-navbar>
2019-05-10 13:12:45 +02:00
<div>
2019-05-16 18:11:41 +02:00
<!-- <app-breadcrumb *ngIf="this.isAuthenticated() && (hasBreadCrumb | async)"></app-breadcrumb> -->
2019-05-10 13:12:45 +02:00
<router-outlet (activate)='onActivate($event)' (deactivate)='onDeactivate($event)'></router-outlet>
</div>
2019-04-24 11:26:53 +02:00
</div>
</div>
2020-05-27 16:19:38 +02:00
<app-notification *ngIf="!onlySplash"></app-notification>
<router-outlet *ngIf="onlySplash"></router-outlet>
2019-04-24 11:26:53 +02:00
<!-- <app-navigation class="fixed"></app-navigation>
2018-02-16 08:45:18 +01:00
2018-08-24 17:21:02 +02:00
<div class="container-fluid main-container">
<div class="row" *ngIf="helpContentEnabled">
2018-10-05 17:00:54 +02:00
<app-help-content position="top"></app-help-content>
</div>
<div class="row">
<div class="col-md-2">
<app-help-content position="left" *ngIf="helpContentEnabled"></app-help-content>
2018-10-05 17:00:54 +02:00
</div>
<div class="col-md-8">
<app-breadcrumb *ngIf="this.isAuthenticated() && (hasBreadCrumb | async)"></app-breadcrumb>
<router-outlet (activate)='onActivate($event)' (deactivate)='onDeactivate($event)'></router-outlet>
</div>
<div class="col-md-2">
<app-help-content position="right" *ngIf="helpContentEnabled"></app-help-content>
2018-10-05 17:00:54 +02:00
</div>
</div>
<div class="row" *ngIf="helpContentEnabled">
2018-10-05 17:00:54 +02:00
<app-help-content position="bottom"></app-help-content>
</div>
2018-06-27 12:29:21 +02:00
</div>
2019-04-24 11:26:53 +02:00
<app-notification></app-notification> -->