2017-04-21 04:06:33 -05:00
|
|
|
<div class="container-fluid">
|
2017-04-26 14:22:00 -05:00
|
|
|
<div class="row header">
|
|
|
|
|
|
|
|
<div class="col-md-2 col-sm-3 col-xs-3 top-left-block" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
|
2017-05-01 11:05:28 -05:00
|
|
|
<div class="hamburger-block" (click)="toggleMenu()">
|
|
|
|
<span class="glyphicon glyphicon-menu-hamburger"></span>
|
2017-04-26 14:22:00 -05:00
|
|
|
</div>
|
|
|
|
|
2017-05-01 11:05:28 -05:00
|
|
|
<div id="peertube-title">
|
2017-04-23 04:18:11 -05:00
|
|
|
<a [routerLink]="['/videos/list']" title="Homepage"></a>
|
|
|
|
</div>
|
2017-04-26 14:22:00 -05:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Used for the fixed title -->
|
|
|
|
<div class="col-md-2 col-sm-3 col-xs-3 fake-title-block"></div>
|
|
|
|
|
|
|
|
<!-- We need to reset col-md-* because my-search is in fixed position -->
|
|
|
|
<my-search class="col-md-10 col-sm-9 col-xs-9"></my-search>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2 col-sm-3 col-xs-3 title-menu-left">
|
2016-03-14 16:16:43 -05:00
|
|
|
|
2017-04-21 04:06:33 -05:00
|
|
|
<div class="title-menu-left-block menu">
|
2017-04-26 14:22:00 -05:00
|
|
|
<my-menu *ngIf="isMenuDisplayed && isInAdmin() === false"></my-menu>
|
|
|
|
<my-menu-admin *ngIf="isMenuDisplayed && isInAdmin() === true"></my-menu-admin>
|
2017-04-21 04:06:33 -05:00
|
|
|
</div>
|
2016-03-14 16:16:43 -05:00
|
|
|
</div>
|
|
|
|
|
2017-04-21 10:12:28 -05:00
|
|
|
<!-- Used for the fixed menu -->
|
|
|
|
<div class="col-md-2 col-sm-3 col-xs-3">
|
|
|
|
</div>
|
|
|
|
|
2017-04-26 14:22:00 -05:00
|
|
|
<div [ngClass]="getMainColClasses()">
|
2016-03-14 16:16:43 -05:00
|
|
|
|
2017-04-21 04:06:33 -05:00
|
|
|
<div class="main-row">
|
|
|
|
<router-outlet></router-outlet>
|
|
|
|
</div>
|
2017-04-21 10:12:28 -05:00
|
|
|
|
2017-04-21 11:26:09 -05:00
|
|
|
<footer class="row">
|
2017-04-23 15:22:41 -05:00
|
|
|
<a href="https://github.com/Chocobozzz/PeerTube" title="PeerTube on Github">PeerTube</a> -
|
|
|
|
<a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" title="PeerTube licence">CopyLeft 2015-2017</a>
|
2017-04-21 10:12:28 -05:00
|
|
|
</footer>
|
2016-08-23 04:45:28 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-03-14 07:50:19 -05:00
|
|
|
</div>
|
2017-04-21 04:06:33 -05:00
|
|
|
|
|
|
|
<my-confirm></my-confirm>
|
|
|
|
<simple-notifications [options]="notificationOptions"></simple-notifications>
|