2018-08-24 17:21:02 +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">
|
2018-10-08 16:58:52 +02:00
|
|
|
<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">
|
2018-10-08 16:58:52 +02:00
|
|
|
<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">
|
2018-10-08 16:58:52 +02:00
|
|
|
<app-help-content position="right" *ngIf="helpContentEnabled"></app-help-content>
|
2018-10-05 17:00:54 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-08 16:58:52 +02:00
|
|
|
<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-01-24 11:46:29 +01:00
|
|
|
<app-notification></app-notification>
|