aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/app.component.html
blob: 23ed04c2dad67b707ac25c9d5b11ebd761f82065 (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
39
40
41
<div *ngIf="customCSS" [innerHTML]="customCSS"></div>

<hotkeys-cheatsheet></hotkeys-cheatsheet>

<div [ngClass]="{ 'user-logged-in': isUserLoggedIn(), 'user-not-logged-in': !isUserLoggedIn() }">
  <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]="defaultRoute" title="Homepage">
        <span class="icon icon-logo"></span>
        <span class="instance-name">{{ instanceName }}</span>
      </a>
    </div>

    <div class="header-right" [ngClass]="{ 'border-bottom': isMenuDisplayed === false }">
      <my-header></my-header>
    </div>
  </div>

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

    <div id="content" tabindex="-1" class="main-col container-fluid" [ngClass]="{ expanded: isMenuDisplayed === false }">

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

      <footer class="row">
        <a href="https://joinpeertube.org" title="PeerTube website" target="_blank" rel="noopener noreferrer">PeerTube v{{ serverVersion }}</a> -
        <a href="https://github.com/Chocobozzz/PeerTube/blob/develop/LICENSE" title="PeerTube license" target="_blank" rel="noopener noreferrer">CopyLeft 2015-2018</a>
      </footer>
    </div>
  </div>
</div>

<ngx-loading-bar [includeSpinner]="false"></ngx-loading-bar>
<my-confirm></my-confirm>
<simple-notifications [options]="notificationOptions"></simple-notifications>