2022-01-26 11:30:30 +01:00
|
|
|
<div id="session-container">
|
2022-01-26 16:01:12 +01:00
|
|
|
<mat-sidenav-container class="sidenav-container">
|
|
|
|
<mat-sidenav
|
|
|
|
#sidenav
|
|
|
|
mode="{{ sidenavMode }}"
|
|
|
|
position="end"
|
|
|
|
class="sidenav-menu"
|
|
|
|
fixedInViewport="true"
|
|
|
|
fixedTopGap="0"
|
|
|
|
fixedBottomGap="0"
|
|
|
|
>
|
2022-02-11 13:18:50 +01:00
|
|
|
|
2022-02-03 17:08:23 +01:00
|
|
|
<!-- OPENVIDU PANEL -->
|
2022-02-11 13:18:50 +01:00
|
|
|
<ng-content select="[panel]"></ng-content>
|
|
|
|
|
2022-01-26 16:01:12 +01:00
|
|
|
</mat-sidenav>
|
|
|
|
|
|
|
|
<mat-sidenav-content class="sidenav-main">
|
2022-02-11 13:18:50 +01:00
|
|
|
<!-- OPENVIDU LAYOUT -->
|
2022-02-03 17:08:23 +01:00
|
|
|
<ng-container *ngIf="layoutTemplate">
|
|
|
|
<div id="layout-container">
|
|
|
|
<ng-container *ngTemplateOutlet="layoutTemplate"></ng-container>
|
|
|
|
</div>
|
|
|
|
</ng-container>
|
2022-01-26 16:01:12 +01:00
|
|
|
</mat-sidenav-content>
|
|
|
|
</mat-sidenav-container>
|
2022-01-19 17:24:11 +01:00
|
|
|
|
2022-02-03 17:08:23 +01:00
|
|
|
<!-- OPENVIDU TOOLBAR -->
|
2022-02-11 13:18:50 +01:00
|
|
|
<div id="footer-container">
|
|
|
|
<span #toolbarRef>
|
|
|
|
<!-- Custom toolbar -->
|
|
|
|
<ng-content select="[toolbar]"></ng-content>
|
|
|
|
</span>
|
|
|
|
|
|
|
|
<!-- Default toolbar if custom toolbar is not injected -->
|
|
|
|
<ov-toolbar *ngIf="toolbarRef.childNodes.length === 0"></ov-toolbar>
|
|
|
|
</div>
|
2022-01-19 17:24:11 +01:00
|
|
|
</div>
|