mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
11 lines
620 B
HTML
11 lines
620 B
HTML
<a *ngIf="linkType != linkTypes.None" [target]="(linkType == linkTypes.ExternalLink) ? '_blank' : '_self'" [attr.rel]="(linkType == linkTypes.ExternalLink) ? 'noopener noreferrer' : null" [routerLink]="['/collections/' + object.id]" class="lead">
|
|
{{ dsoNameService.getName(object) }}
|
|
</a>
|
|
<span *ngIf="linkType == linkTypes.None" class="lead">
|
|
{{ dsoNameService.getName(object) }}
|
|
</span>
|
|
<span *ngIf="object.archivedItemsCount >= 0" class="lead archived-items-lead">[{{object.archivedItemsCount}}]</span>
|
|
<div *ngIf="object.shortDescription" class="text-muted abstract-text">
|
|
{{object.shortDescription}}
|
|
</div>
|