mirror of https://github.com/Chocobozzz/PeerTube
12 lines
473 B
HTML
12 lines
473 B
HTML
<ng-template #content>
|
|
<ng-content></ng-content>
|
|
</ng-template>
|
|
|
|
<a *ngIf="!href" [routerLink]="internalLink" [attr.title]="title" [ariaLabel]="ariaLabel" [tabindex]="tabindex" [ngClass]="builtClasses">
|
|
<ng-template *ngTemplateOutlet="content"></ng-template>
|
|
</a>
|
|
|
|
<a *ngIf="href" [href]="href" [target]="target" [attr.title]="title" [ariaLabel]="ariaLabel" [tabindex]="tabindex" [ngClass]="builtClasses">
|
|
<ng-template *ngTemplateOutlet="content"></ng-template>
|
|
</a>
|