1
0
Fork 0
peertube/client/src/app/app.component.html

40 lines
1.2 KiB
HTML
Raw Normal View History

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