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

40 lines
1.2 KiB
HTML
Raw Normal View History

2017-12-01 06:08:46 -06:00
<div>
<div class="header">
2017-04-26 14:22:00 -05:00
2017-12-01 02:20:19 -06:00
<div class="top-left-block" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
2017-12-01 06:08:46 -06:00
<span class="icon icon-menu" (click)="toggleMenu()"></span>
2017-04-26 14:22:00 -05:00
2017-12-01 06:08:46 -06:00
<a id="peertube-title" [routerLink]="['/videos/list']" title="Homepage">
<span class="icon icon-logo"></span>
<span class="instance-name">{{ instanceName }}</span>
2017-12-01 06:08:46 -06:00
</a>
2017-04-26 14:22:00 -05:00
</div>
2017-12-01 02:20:19 -06:00
<div class="header-right">
2017-12-05 10:46:33 -06:00
<my-header></my-header>
2017-12-01 02:20:19 -06:00
</div>
2017-04-26 14:22:00 -05:00
</div>
2017-12-01 06:08:46 -06:00
<div class="sub-header-container">
2017-12-11 01:50:43 -06:00
<div *ngIf="isMenuDisplayed" class="title-menu-left">
<my-menu></my-menu>
2016-03-14 16:16:43 -05:00
</div>
2017-12-01 06:08:46 -06:00
<div class="main-col container-fluid" [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">
2018-01-31 03:19:34 -06:00
<a href="https://github.com/Chocobozzz/PeerTube" title="PeerTube on Github">PeerTube v{{ serverVersion }}</a> -
2018-02-16 04:04:12 -06:00
<a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" title="PeerTube licence">CopyLeft 2015-2018</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
2017-12-12 07:57:46 -06:00
<ngx-loading-bar [includeSpinner]="false" color="#F1680D"></ngx-loading-bar>
2017-04-21 04:06:33 -05:00
<my-confirm></my-confirm>
<simple-notifications [options]="notificationOptions"></simple-notifications>