Use sequelize scopes
[oweals/peertube.git] / client / src / app / app.component.html
1 <div>
2   <div class="header">
3
4     <div class="top-left-block" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
5       <span class="icon icon-menu" (click)="toggleMenu()"></span>
6
7       <a id="peertube-title" [routerLink]="['/videos/list']" title="Homepage">
8         <span class="icon icon-logo"></span>
9         PeerTube
10       </a>
11     </div>
12
13     <div class="header-right">
14       <my-header></my-header>
15     </div>
16   </div>
17
18   <div class="sub-header-container">
19     <div *ngIf="isMenuDisplayed" class="title-menu-left">
20         <my-menu></my-menu>
21     </div>
22
23     <div class="main-col container-fluid" [ngClass]="getMainColClasses()">
24
25       <div class="main-row">
26         <router-outlet></router-outlet>
27       </div>
28
29       <footer class="row">
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>
32       </footer>
33     </div>
34   </div>
35 </div>
36
37 <ngx-loading-bar [includeSpinner]="false" color="#F1680D"></ngx-loading-bar>
38 <my-confirm></my-confirm>
39 <simple-notifications [options]="notificationOptions"></simple-notifications>