2020-11-02 08:29:52 +01:00
|
|
|
<mat-toolbar color="primary">
|
2021-01-12 19:29:00 +01:00
|
|
|
<a href="javascript:" mat-icon-button>
|
2020-11-02 08:29:52 +01:00
|
|
|
<mat-icon (click)="sidenav.toggle()">menu</mat-icon>
|
|
|
|
</a>
|
2021-01-12 19:29:00 +01:00
|
|
|
<mat-icon svgIcon="logo"></mat-icon>
|
2020-11-02 08:29:52 +01:00
|
|
|
<span>
|
2021-01-12 19:29:00 +01:00
|
|
|
we.bstly
|
2020-11-02 08:29:52 +01:00
|
|
|
</span>
|
|
|
|
<span class="spacer"></span>
|
|
|
|
<ng-container>
|
|
|
|
|
2021-01-12 19:29:00 +01:00
|
|
|
<button *ngIf="locales.length > 1" mat-button [matMenuTriggerFor]="menu">
|
2020-11-02 08:29:52 +01:00
|
|
|
<mat-icon>language</mat-icon>
|
|
|
|
<mat-icon>arrow_drop_down</mat-icon>
|
|
|
|
</button>
|
|
|
|
<mat-menu #menu="matMenu">
|
2021-03-14 20:33:34 +01:00
|
|
|
<a *ngFor="let locale of locales" mat-menu-item (click)="setLocale(locale)">{{'locale.' + locale + '.long' |
|
|
|
|
i18n}}</a>
|
2020-11-02 08:29:52 +01:00
|
|
|
</mat-menu>
|
|
|
|
</ng-container>
|
|
|
|
</mat-toolbar>
|
|
|
|
|
|
|
|
<mat-sidenav-container>
|
|
|
|
<mat-sidenav #sidenav [mode]="isBiggerScreen() ? 'side' : 'over'" [(opened)]="opened"
|
|
|
|
(click)="!isBiggerScreen() && opened=false">
|
|
|
|
<mat-nav-list>
|
|
|
|
<a *ngIf="!auth || auth && !auth.authenticated" routerLink="/login" routerLinkActive="active" mat-list-item>
|
|
|
|
<mat-icon>login</mat-icon> {{'login' | i18n}}
|
|
|
|
</a>
|
|
|
|
<a *ngIf="auth && auth.authenticated" routerLink="/account/info" routerLinkActive="active" mat-list-item>
|
|
|
|
<mat-icon>account_circle</mat-icon> {{'account' | i18n}}
|
|
|
|
</a>
|
2021-03-13 09:47:25 +01:00
|
|
|
<a *ngIf="auth && auth.authenticated" routerLink="/services" routerLinkActive="active" mat-list-item>
|
|
|
|
<mat-icon>widgets</mat-icon> {{'services' | i18n}}
|
2020-11-02 08:29:52 +01:00
|
|
|
</a>
|
2021-01-12 19:29:00 +01:00
|
|
|
<a routerLink="/tokens" mat-list-item>
|
2020-11-02 08:29:52 +01:00
|
|
|
<mat-icon>card_giftcard</mat-icon> {{'tokens.redeem' | i18n}}
|
|
|
|
</a>
|
2021-03-14 20:33:34 +01:00
|
|
|
<a (click)="openExternal('https://membership.bstly.de')" mat-list-item>
|
2020-11-02 08:29:52 +01:00
|
|
|
<mat-icon>shopping_cart</mat-icon> {{'tokens.get' | i18n}}<mat-icon style="font-size: 1em;">open_in_new
|
|
|
|
</mat-icon>
|
|
|
|
</a>
|
|
|
|
<a *ngIf="auth && auth.authenticated" (click)="logout()" mat-list-item>
|
|
|
|
<mat-icon>exit_to_app</mat-icon> {{'logout' | i18n}}
|
|
|
|
</a>
|
|
|
|
</mat-nav-list>
|
2021-01-12 19:29:00 +01:00
|
|
|
|
|
|
|
<span class="spacer"></span>
|
|
|
|
|
|
|
|
<mat-nav-list>
|
|
|
|
<a routerLink="/imprint" mat-list-item style="font-size: 0.7em;">
|
|
|
|
{{'imprint' | i18n}}
|
|
|
|
</a>
|
|
|
|
<a routerLink="/privacy-policy" mat-list-item style="font-size: 0.7em;">
|
|
|
|
{{'privacy-policy' | i18n}}
|
|
|
|
</a>
|
|
|
|
</mat-nav-list>
|
2020-11-02 08:29:52 +01:00
|
|
|
</mat-sidenav>
|
|
|
|
|
|
|
|
<!-- Main content -->
|
|
|
|
<mat-sidenav-content>
|
|
|
|
<div class="container">
|
|
|
|
<router-outlet></router-outlet>
|
|
|
|
</div>
|
|
|
|
</mat-sidenav-content>
|
|
|
|
</mat-sidenav-container>
|