aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.component.html
blob: da4273dda39749cb8cb08501b6eed2efceb84658 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<div>
  <div class="header">

    <div class="top-left-block" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
      <span class="icon icon-menu" (click)="toggleMenu()"></span>

      <a id="peertube-title" [routerLink]="['/videos/list']" title="Homepage">
        <span class="icon icon-logo"></span>
        PeerTube
      </a>
    </div>

    <div class="header-right">
      <my-header></my-header>
    </div>
  </div>

  <div class="sub-header-container">
    <div *ngIf="isMenuDisplayed" class="title-menu-left">
        <my-menu></my-menu>
    </div>

    <div class="main-col container-fluid" [ngClass]="getMainColClasses()">

      <div class="main-row">
        <router-outlet></router-outlet>
      </div>

      <footer class="row">
        <a href="https://github.com/Chocobozzz/PeerTube" title="PeerTube on Github">PeerTube</a> -
        <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" title="PeerTube licence">CopyLeft 2015-2017</a>
      </footer>
    </div>
  </div>
</div>

<my-confirm></my-confirm>
<simple-notifications [options]="notificationOptions"></simple-notifications>