PeerTube/client/src/app/app.component.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2017-12-01 13:08:46 +01:00
<div>
<div class="header">
2017-04-26 21:22:00 +02:00
2017-12-01 09:20:19 +01:00
<div class="top-left-block" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
2017-12-01 13:08:46 +01:00
<span class="icon icon-menu" (click)="toggleMenu()"></span>
2017-04-26 21:22:00 +02:00
2017-12-01 13:08:46 +01:00
<a id="peertube-title" [routerLink]="['/videos/list']" title="Homepage">
<span class="icon icon-logo"></span>
PeerTube
</a>
2017-04-26 21:22:00 +02:00
</div>
2017-12-01 09:20:19 +01:00
<div class="header-right">
2017-12-05 17:46:33 +01:00
<my-header></my-header>
2017-12-01 09:20:19 +01:00
</div>
2017-04-26 21:22:00 +02:00
</div>
2017-12-01 13:08:46 +01:00
<div class="sub-header-container">
2017-12-01 09:20:19 +01:00
<div class="title-menu-left">
2016-03-14 22:16:43 +01:00
2017-04-21 11:06:33 +02:00
<div class="title-menu-left-block menu">
2017-12-08 10:41:49 +01:00
<my-menu *ngIf="isMenuDisplayed"></my-menu>
2017-04-21 11:06:33 +02:00
</div>
2016-03-14 22:16:43 +01:00
</div>
2017-12-01 13:08:46 +01:00
<div class="main-col container-fluid" [ngClass]="getMainColClasses()">
2016-03-14 22:16:43 +01:00
2017-04-21 11:06:33 +02:00
<div class="main-row">
<router-outlet></router-outlet>
</div>
2017-04-21 17:12:28 +02:00
2017-04-21 18:26:09 +02:00
<footer class="row">
<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 17:12:28 +02:00
</footer>
2016-08-23 11:45:28 +02:00
</div>
</div>
2016-03-14 13:50:19 +01:00
</div>
2017-04-21 11:06:33 +02:00
<my-confirm></my-confirm>
<simple-notifications [options]="notificationOptions"></simple-notifications>