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