]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/app.component.html
Add hmr
[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>
9 PeerTube
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">
d1a00ddb
C
30 <a href="https://github.com/Chocobozzz/PeerTube" title="PeerTube on Github">PeerTube</a> -
31 <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" title="PeerTube licence">CopyLeft 2015-2017</a>
ea9f487b 32 </footer>
52672600
C
33 </div>
34 </div>
dc8bc31b 35</div>
383bfc83
C
36
37<my-confirm></my-confirm>
38<simple-notifications [options]="notificationOptions"></simple-notifications>