2017-04-21 04:06:33 -05:00
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2 col-sm-3 col-xs-3 title-menu-left">
|
2017-04-23 04:18:11 -05:00
|
|
|
<div id="peertube-title" class="title-menu-left-block header">
|
|
|
|
<a [routerLink]="['/videos/list']" title="Homepage"></a>
|
|
|
|
</div>
|
2016-03-14 16:16:43 -05:00
|
|
|
|
2017-04-21 04:06:33 -05:00
|
|
|
<div class="title-menu-left-block menu">
|
|
|
|
<my-menu *ngIf="isInAdmin() === false"></my-menu>
|
|
|
|
<my-menu-admin *ngIf="isInAdmin() === true"></my-menu-admin>
|
|
|
|
</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-21 04:06:33 -05:00
|
|
|
<div class="col-md-10 col-sm-9 col-xs-9 main-col">
|
2017-04-21 11:26:09 -05:00
|
|
|
<div class="row header">
|
|
|
|
<!-- 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>
|
2017-04-21 04:06:33 -05:00
|
|
|
</div>
|
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>
|