]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.component.html
Add "Can I seed videos with my classic BitTorrent client" in FAQ
[github/Chocobozzz/PeerTube.git] / client / src / app / app.component.html
CommitLineData
00b5556c
C
1<div *ngIf="customCSS" [innerHTML]="customCSS"></div>
2
26c6ee80
C
3<div>
4 <div class="header">
67167390 5
b33f657c 6 <div class="top-left-block" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
26c6ee80 7 <span class="icon icon-menu" (click)="toggleMenu()"></span>
67167390 8
29f9b562 9 <a id="peertube-title" [routerLink]="defaultRoute" title="Homepage">
26c6ee80 10 <span class="icon icon-logo"></span>
8a44f835 11 <span class="instance-name">{{ instanceName }}</span>
26c6ee80 12 </a>
67167390
C
13 </div>
14
b33f657c 15 <div class="header-right">
f3aaa9a9 16 <my-header></my-header>
b33f657c 17 </div>
67167390
C
18 </div>
19
26c6ee80 20 <div class="sub-header-container">
3daf4002
C
21 <div *ngIf="isMenuDisplayed" class="title-menu-left">
22 <my-menu></my-menu>
98b01bac 23 </div>
98b01bac 24
26c6ee80 25 <div class="main-col container-fluid" [ngClass]="getMainColClasses()">
98b01bac 26
383bfc83
C
27 <div class="main-row">
28 <router-outlet></router-outlet>
29 </div>
ea9f487b 30
897ec54d 31 <footer class="row">
9d145133
DL
32 <a href="https://github.com/Chocobozzz/PeerTube" title="PeerTube on Github" target="_blank" rel="noopener noreferrer">PeerTube v{{ serverVersion }}</a> -
33 <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" title="PeerTube license" target="_blank" rel="noopener noreferrer">CopyLeft 2015-2018</a>
ea9f487b 34 </footer>
52672600
C
35 </div>
36 </div>
dc8bc31b 37</div>
383bfc83 38
c893d451 39<ngx-loading-bar [includeSpinner]="false" color="#F1680D"></ngx-loading-bar>
383bfc83
C
40<my-confirm></my-confirm>
41<simple-notifications [options]="notificationOptions"></simple-notifications>