mirror of https://github.com/OpenVidu/openvidu.git
26 lines
670 B
HTML
26 lines
670 B
HTML
<div id="session-container">
|
|
<mat-sidenav-container class="sidenav-container">
|
|
<mat-sidenav
|
|
#sidenav
|
|
mode="{{ sidenavMode }}"
|
|
position="end"
|
|
class="sidenav-menu"
|
|
fixedInViewport="true"
|
|
fixedTopGap="0"
|
|
fixedBottomGap="0"
|
|
>
|
|
<ng-container *ngTemplateOutlet="panelTemplate"></ng-container>
|
|
</mat-sidenav>
|
|
|
|
<mat-sidenav-content class="sidenav-main">
|
|
<div id="layout-container">
|
|
<ng-container *ngTemplateOutlet="layoutTemplate"></ng-container>
|
|
</div>
|
|
</mat-sidenav-content>
|
|
</mat-sidenav-container>
|
|
|
|
<div id="footer-container" class="ovToolbar">
|
|
<ng-container *ngTemplateOutlet="toolbarTemplate"></ng-container>
|
|
</div>
|
|
</div>
|