1
0
Fork 0
peertube/client/src/app/+admin/follows/follows.component.html

12 lines
281 B
HTML
Raw Normal View History

<div class="follows-menu">
<tabset #followsMenuTabs>
<tab *ngFor="let link of links">
<ng-template tabHeading>
<a class="tab-link" [routerLink]="link.path">{{ link.title }}</a>
</ng-template>
</tab>
</tabset>
</div>
<router-outlet></router-outlet>