aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account.component.html
blob: b79e61beffe79577486da4386198ce8ce2ed092f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="row">
  <div class="sub-menu">
    <a i18n routerLink="/my-account/settings" routerLinkActive="active" class="title-page">My settings</a>

    <a i18n routerLink="/my-account/video-channels" routerLinkActive="active" class="title-page">My channels</a>

    <a i18n routerLink="/my-account/videos" routerLinkActive="active" class="title-page">My videos</a>

    <a i18n routerLink="/my-account/subscriptions" routerLinkActive="active" class="title-page">My subscriptions</a>

    <a *ngIf="isVideoImportEnabled()" i18n routerLink="/my-account/video-imports" routerLinkActive="active" class="title-page">My imports</a>

    <a i18n routerLink="/my-account/ownership" routerLinkActive="active" class="title-page">Ownership changes</a>
  </div>

  <div class="margin-content">
    <router-outlet></router-outlet>
  </div>
</div>