mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
10 lines
454 B
HTML
10 lines
454 B
HTML
<a *ngIf="linkType != linkTypes.None" [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" [attr.rel]="(linkType == linkTypes.ExternalLink) ? 'noopener' : null" [routerLink]="['/communities/' + object.id]" class="lead">
|
|
{{object.name}}
|
|
</a>
|
|
<span *ngIf="linkType == linkTypes.None" class="lead">
|
|
{{object.name}}
|
|
</span>
|
|
<div *ngIf="object.shortDescription" class="text-muted abstract-text">
|
|
{{object.shortDescription}}
|
|
</div>
|